Lesson 381/5
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)