Level 59
Level 61
8 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?
string, number
A JavaScript date can be written as a _______ or as a _______
Dates written as numbers, specifies
the number of milliseconds since January 1, 1970, 00:00:00
new Date();
creates a new date object with the current date and time
new Date(milliseconds);
creates a new date object with milliseconds
new Date(dateString);
creates a new date object from the specified date and time
new Date(7 numbers)
creates a new date object with the specified date and time
date.toUTCString();
converts a date to a UTC string (a date display standard)
date.toDateString();
converts a date to a more readable format