scrimba
Note at 0:51
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

AboutCommentsNotes
Note at 0:51
Expand for more info
index.js
run
preview
console
const meter = document.getElementById("meter")
const today = new Date()
// Task:
// Write a function to wire up the festivity loader to reflect how many days are remaining until Christmas!
meter.value = (25 - today.getDate())+1
// Stretch goals:
// - Animate the loader.
// - Change the colors depending on the meter's value.
Console
/index.html
LIVE