scrimba
Deploying with Netlify
Intro to Continuous Deployment
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

Intro to Continuous Deployment
AboutCommentsNotes
Intro to Continuous Deployment
Expand for more info
index.js
run
preview
console
let saveEl = document.getElementById("save-el")
let countEl = document.getElementById("count-el")
let count = 0

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

function save() {
let countStr = count + " - "
saveEl.textContent += countStr
countEl.textContent = 0
count = 0
}
Console
/index.html
-1:54