scrimba
Frontend Career Path
Making websites interactive
Passenger counter
Create the save button
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
Create the save button
Expand for more info
index.js
run
preview
console
let countEl = document.getElementById("count-el")
let count = 0

function increment() {
count = count + 1
countEl.innerText = count
}

// 1. Create a function, save(), which logs out the count when it's called


Console
/index.html
-2:05