List of questions
Related questions
Question 117 - Certified JavaScript Developer I discussion
Refer to the code below:
Let inArray =[ [ 1, 2 ] , [ 3, 4, 5 ] ];
Which two statements result in the array [1, 2, 3, 4, 5] ?
Choose 2 answers
A.
[ ]. Concat.apply ([ ], inArray);
B.
[ ]. Concat (... inArray);
C.
[ ]. concat.apply(inArray, [ ]);
D.
[ ]. concat ( [ ….inArray ] );
Your answer:
0 comments
Sorted by
Leave a comment first