Skip to content

Latest commit

 

History

History
4 lines (4 loc) · 87 Bytes

spread-operator.md

File metadata and controls

4 lines (4 loc) · 87 Bytes

Spread operator expands an array

x = [1, ...[2, 3, 4], 5]; // => [1,2,3,4,5]