We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Spread operator expands an array
x = [1, ...[2, 3, 4], 5]; // => [1,2,3,4,5]