Logo

Programming-Idioms

History of Idiom 224 > diff from v15 to v16

Edit summary for version 16 by programming-idioms.org:
[JS] Fix: items needs to be updated

Version 15

2020-06-04, 14:07:40

Version 16

2020-06-15, 21:09:29

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
[x, ...items]
Code
items = [x, ...items]