For example with the following List:
var originalList = ['follow', 'spread', 'operators.'];
When referencing it to make another List, why use the spread operator:
var spreadList = ['See? I', ...originalList]
Instead of without the spread operator:
var lonelyList = ['Actually I dont', originalList]
When the results for spreadList and lonelyList respectively are:
[See? I, follow, spread, operators.]
[Actually I dont, follow, spread, operators.]