JavaScript arrays are written with _____.
round brackets ()
curly brackets {}
double quotes ""
square brackets []
Correct Answer : D
What is true about Arrays?
What is the final value of array below?
const array = [1, 2, 3] const extension = [4, 5, 6] array = [...extension, ...array]