Skip to content

Challenge Manipulate Arrays With Push

Quincy Larson edited this page Aug 20, 2016 · 1 revision

Challenge Manipulate Arrays With push

Not only can you pop() data off of the end of an array, you can also push() data onto the end of an array.

myArray.push(["dog", 3]);
Clone this wiki locally