Not sure where to start?
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
/review
Karma
scrimba
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()