38
Countdown Timer
Build a timer with loops
Build a Countdown Timer!
Let's combine loops with timing to create a countdown timer!
// setInterval runs code repeatedly
let timer = setInterval(() => {
console.log(count)
count--
}, 1000)
Build a timer with loops
Let's combine loops with timing to create a countdown timer!
// setInterval runs code repeatedly
let timer = setInterval(() => {
console.log(count)
count--
}, 1000)