Logo

Programming-Idioms

History of Idiom 171 > diff from v29 to v30

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

Version 29

2020-05-18, 18:16:23

Version 30

2020-06-25, 11:23: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.

Variables
x,s
Variables
x,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.