scrimba
Adding to Arrays With the Push, Unshift, and Concat Methods: Part 1 of 2
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Adding to Arrays With the Push, Unshift, and Concat Methods: Part 1 of 2
AboutCommentsNotes
Adding to Arrays With the Push, Unshift, and Concat Methods: Part 1 of 2
Expand for more info
index.js
run
preview
console
const arr = ['First item', 'Second item', 'Third item'];

// Task: add 'Fourth item'.
Console
/index.html
-11:06