Discussion Forum : Backbonejs
Question - Consider the following nested array:
_.flatten([1, [2], [3, [[4]]]], true); Justify the output of it.
Options:
A .  [1, [2], 3, [[4]]];
B .  [1, 2, 3, [[4]]];
C .  [1, 2, [3, [[4]]]];
D .  [1, [2], 3, [[4]],true];
Answer: Option B





Submit Your Solution Below and Earn Points !
Submit Your Solution hear:

Your email address will not be published. Required fields are marked *