scrimba
Frontend-utvikling JS #6
Traversere et array - The easy way
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

Traversere et array - The easy way
AboutCommentsNotes
Traversere et array - The easy way
Expand for more info
index.js
run
preview
console
const filmer = ["Ben Hur", "Spartacus", "Up", "Nemo"];

for(let i=0; i < filmer.length; i++) {
console.log( filmer[i] );
}
Console
"Ben Hur"
,
"Spartacus"
,
"Up"
,
"Nemo"
,
index.html
-0:56