scrimba
Learn JavaScript
Passenger counter
Display the count
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
Display the count
Expand for more info
index.js
run
preview
console
// document.getElementById("count").innerText = 5

// change the count-el in the HTML to reflect the new count

let count = 0

function increment() {
count = count + 1
console.log(count)
}


Console
/index.html
-5:13