scrimba
Frontend Career Path
Making websites interactive
Blackjack
Aside: Array indexes
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

AboutCommentsNotes
Aside: Array indexes
Expand for more info
index.js
run
preview
console
// Arrays - ordered lists of items

let featuredPosts = [
"Check out my Netflix clone",
"Here's the code for my project",
"I've just relaunched my portfolio"
]


let experience = ["CEO at Scrimba", "Frontend developer at Xeneta", "People counter for Norstat"]

// Make the following appear in the console:
// Frontend developer at Xeneta
// People counter for Norstat
// CEO at Scrimba
Console
/index.html
-4:03