which two statements results in the array [1,2,3,4,5]?
Refer to the code below
let inArray = [[1,2],[3,4,5]];
which two statements results in the array [1,2,3,4,5]? choose 2 answer
A . [ ].concat(…inArray);
B. [ ].concat.apply(inArray,[ ]);
C. [ ].concat([…inArray])
D. [ ].concat.apply([ ],inArray);
Answer: A,D
Latest JavaScript Developer I Dumps Valid Version with 144 Q&As
Latest And Valid Q&A | Instant Download | Once Fail, Full Refund
Subscribe
Login
0 Comments
Inline Feedbacks
View all comments