Logo

Programming-Idioms

History of Idiom 224 > diff from v16 to v17

Edit summary for version 17 by programming-idioms.org:
[JS] Safer with semicolon, iiuc

Version 16

2020-06-15, 21:09:29

Version 17

2020-06-25, 11:24:34

Idiom #224 Add element to the beginning of the list

Insert element x at the beginning of list items.

Idiom #224 Add element to the beginning of the list

Insert element x at the beginning of list items.

Extra Keywords
prepend prefix start
Extra Keywords
prepend prefix start
Code
items = [x, ...items]
Code
items = [x, ...items];