I am new to Javascript and is confused why the following won't work?
var array = [1, 2, 3, 4]
var spread = ...array;
I was expecting it would become 1, 2, 3, 4
. Instead, it gave an error message Unexpected token ...
. Can anyone explain this to me?
Thank you so much!