scrimba
Note at 2:45
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

Note at 2:45
AboutCommentsNotes
Note at 2:45
Expand for more info
index.js
run
preview
console
const countdownDisplay = document.getElementById("countdown-display")

function renderCountdown(){
const today = new Date();
const currentYear = today.getFullYear();
const christmasDay = new Date(currentYear, 11, 25);
const daysLeft = Math.ceil((christmasDay - today) / (1000 * 60 * 60 * 24));

const countdownDisplay = document.getElementById("countdown-display");
countdownDisplay.innerHTML = daysLeft;
}

renderCountdown()

Console
/index.html
LIVE