Skip to main content
Code Cinema
JavaScript

Build an array. Watch it grow and shrink in real time.

let arr = [1, 2, 3]; arr.push(4); arr.push(5); arr.pop();
Click here and start typing...
Array — ordered list of values
arr [0]
Type the first line to create the array...
Operations