Logo

Programming-Idioms

History of Idiom 171 > diff from v12 to v13

Edit summary for version 13 by Alonbd:
New JS implementation by user [Alonbd]

Version 12

2019-09-26, 14:21:57

Version 13

2019-09-26, 14:24:45

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)
Comments bubble
s is an array and x will be inserted at the end.