scrimba
Frontend Career Path
Making websites interactive
Passenger counter
Display the count with innerText
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

Display the count with innerText
AboutCommentsNotes
Display the count with innerText
Expand for more info
index.js
run
preview
console
// grab the count-el element, store it in a countEl variable
let count = 0

function increment() {
count = count + 1
// set countEl's innerText to the count
}


Console
/index.html
-0:39