Logo

Programming-Idioms

History of Idiom 171 > diff from v21 to v22

Edit summary for version 22 by programming-idioms.org:
[JS] Emphasis in comments

Version 21

2019-10-05, 00:15:37

Version 22

2019-10-29, 21:49:25

Idiom #171 Add an element at the end of a list

Append element x to the list s.

Idiom #171 Add an element at the end of a list

Append element x to the list s.

Extra Keywords
push grow
Extra Keywords
push grow
Code
s.push(x)
Code
s.push(x)
Comments bubble
s is an array and x will be inserted at the end.
Comments bubble
s is an array and x will be inserted at the end.