Menu
×
×
Correct!
Exercise:Use the correct Date method to get the month (0-11) out of a date object.
const d = new Date();
month = d.getMonth();
Not CorrectClick here to try again. Correct!Next ❯const d = new Date(); month =; |