InterviewSolution
Saved Bookmarks
| 1. |
What will be the output of the following code snippetconst arr=[1,2,3,4,5]console.log(…arr)(A) [1 2 3 4 5](B) …[1 2 3 4 5](C) 1 2 3 4 5(D) …1 2 3 4 5 |
| Answer» | |