Spread Operator: The Shortest Way to Copy, Then Modify an Array in JavaScript

The shortest way to make a shallow copy of an array and then push a new value on to the array is:

[...arr, new_value]


Also read: 3 simple use cases for the spread operator

Posts

Pages