scrimba
Day#1:ChristmasCountdown
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

Day#1:ChristmasCountdown
AboutCommentsNotes
Day#1:ChristmasCountdown
Expand for more info
index.js
run
preview
console
const countdownDisplay = document.getElementById("countdown-display")

function renderCountdown(){
const christmas = 25
// Task:
// - Get today's date (you only need the day).
// - Calculate remaining days.
// - Display remaining days in countdownDisplay.
const date = new Date()
const today = date.getDate()
let remainingdays = christmas - today
countdownDisplay.innerHTML = remainingdays
}

renderCountdown()

// Stretch goals:
// - Display hours, minutes, seconds.
// - Add a countdown for another festival, your birthday, or Christmas 2022.
Console
/index.html
LIVE