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

Aside: Loops
Expand for more info
index.js
run
preview
console
// Count to ten!

// We need to specify...

// Where should we START counting?
// Where is the FINISH line?
// What's the STEP SIZE we should use?

// START FINISH STEP SIZE
for ( let count = 1; count < 11; count += 1 ) {

console.log(count)

}
Console
/index.html
-4:01