Level 62
Level 64
31 words 0 ignored
Ready to learn
Ready to review
Ignore words
Check the boxes below to ignore/unignore words, then click save at the bottom. Ignored words will never appear in any learning session.
Ignore?
full text string
JavaScript will (by default) output dates in _______ format
ISO 8601
international standard for the representation of dates and times
YYYY-MM-DD
ISO 8601 syntax
Sunday
the first of the week (0)
date.getTime();
Get the time (milliseconds since January 1, 1970) of a date
date.getFullYear();
Get the four digit year (yyyy) of a date
date.getDay();
Get the weekday as a number (0-6) of a date
date.getDate();
Get the day as a number (1-31) of a date
date.getHours();
Get the hour (0-23) of a date
date.getMilliseconds();
Get the milliseconds (0-999) of a date
date.getMinutes();
Get the minutes (0-59) of a date
date.getMonth();
Get the month (0-11) of a date
date.getSeconds();
Get the seconds (0-59) of a date
date.setFullYear();
Set the year (optionally month and day)
date.setDate();
Set the day as a number (1-31)
setDate(day.getDate() + addedDay)
add days to a date
date.setHours();
Set the hour (0-23)
date.setMilliseconds();
Set the milliseconds (0-999)
date.setMinutes();
Set the minutes (0-59)
date.setMonth();
Set the month (0-11)
date.setSeconds();
Set the seconds (0-59)
date.setTime();
Set the time (milliseconds since January 1, 1970)
Date.parse(string);
converts a valid date string & returns the number of milliseconds between the date and January 1, 1970
date.getUTCDate();
Get the UTC date
date.getUTCDay();
Get the UTC day
date.getUTCFullYear();
Get the UTC year
date.getUTCHours();
Get the UTC hour
date.getUTCMilliseconds();
Get the UTC milliseconds
date.getUTCMinutes();
Get the UTC minutes
date.getUTCMonth();
Get the UTC month
date.getUTCSeconds();
Get the UTC seconds