Home / CSE MCQs / Backbone JS :: Discussion

Discussion :: Backbone JS

  1. Consider the following nested array:
    _.flatten([1, [2], [3, [[4]]]], true); Justify the output of it.
  2. A.
    [1, [2], 3, [[4]]];
    B.
    [1, 2, 3, [[4]]];
    C.
    [1, 2, [3, [[4]]]];
    D.
    [1, [2], 3, [[4]],true];

    View Answer

    Workspace

    Answer : Option B

    Explanation :



Be The First To Comment