scrimba
JS Deep Dive
Arrays & Sets
Use New, Immutable Array Features
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

Use New, Immutable Array Features
AboutCommentsNotes
Use New, Immutable Array Features
Expand for more info
index.js
run
preview
console
const numbers = [1, 2, 3, 4, 5];

for (let i = 0; i < numbers.length; i++) {
console.log(numbers[i]);
}
Console
index.html
-2:37