JavaScript – Date parse() Method
The Date parse() method parses a date string and returns the number of milliseconds since January 1, 1970 00:00:00.
The Date parse() method parses a date string and returns the number of milliseconds since January 1, 1970 00:00:00.
The Date.prototype() property allows you to add new properties and methods to the Date object.
The Date setDate() method sets the day of the month (1 to 31) of a Date object.
The Date setFullYear() method sets the full year (4 digits) of a date, and can also set the month and Date object.
The Date getHours() method returns the hour (0 to 23) of a Date object: 12am = 0, 1am = 1, 2am = 2 … 11pm = 23.
The Date setMilliseconds() method sets the milliseconds (0 to 999) of a Date object.
The Date setMinutes() method sets the minutes (0 to 59) of a Date object, and can also be used to set the seconds and milliseconds.
The Date setMonth() method sets the month (0 to 11) of a Date object: January = 0, February = 1, March = 2 … December = 11.
The Date setSeconds() method sets the seconds (0 to 59) of a Date object, and can also set the milliseconds.
The Date setTime() method sets a date and time by adding or subtracting a specified number of milliseconds to or from midnight January 1, 1970.
The Date setUTCFullYear() method sets the full year (4 digits) of a Date object, according to UTC, and can also set the month and day.
The Date setUTCDate() method sets the day of the month (1 to 31) of a Date object, according to UTC.
The Date getUTCHours() method returns the hour (0 to 23) of a Date object, according to UTC: 12am = 0, 1am = 1, 2am = 2 … 11pm = 23.
The Date setUTCMilliseconds() method sets the milliseconds (0 to 999) of a Date object, according to UTC.
The Date setUTCMinutes() method sets the minutes (0 to 59) of a date, according to UTC, and can also set the seconds and milliseconds.
The Date setUTCMonth() method sets the month (0 to 11) of a Date object, according to UTC: January = 0, February = 1, March = 2 … December = 11.
The Date setUTCSeconds() method sets the seconds (0 to 59) of a Date object, according to UTC, and can also set the milliseconds.
The Date toDateString() method returns the date (not the time) of a Date object as a string.
The Date toISOString() method returns a Date object as a string, using the ISO standard format: YYYY-MM-DDTHH:mm:ss.sssZ.
The Date toJSON() method returns a Date object as a string, formatted as a JSON date, using the format: YYYY-MM-DDTHH:mm:ss.sssZ.