scrimba
Your first interactive website
Creating a counter app
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

Creating a counter app
AboutCommentsNotes
Creating a counter app
Expand for more info
index.js
run
preview
console
var myButton = document.getElementById("btn")
var myTitle = document.getElementById("title")
var counter = 0

myButton.addEventListener("click", function(){
console.log('counter at line 6: ', counter)
// add one line
counter = 2
console.log('counter at line 9: ', counter)
// don't change this
myButton.textContent = counter
})
Console
/index.html
-3:39