List of questions
Related questions
Question 160 - Certified JavaScript Developer I discussion
myArraym can have one level, two levels, or more levels.
Which statement flattens myArray when it can be arbitrarily nested?
A.
myArray. reduce ((prev, curr) => prev.concat(curr) [ ]);
B.
myArray. join (","). split (",");
C.
[ ] .concat {. . .myArray) ;
D.
myArray.flat(Infinity);
Your answer:
0 comments
Sorted by
Leave a comment first