| static UTC(Number, Number, Number…) | Returns the number of milliseconds since midnight of January 1, 1970 according to universal time. |
| getDate() | Returns the day of the month where the value is a Number from 1 to 31. |
| getDay() | Returns the day of the week where the value is a Number from 0 to 6. |
| getFullYear() | Returns the year of the Date in four-digit format. |
| getHours() | Return the hours field of the Date where the value is a Number from 0 (midnight) to 23 (11 PM). |
| getMilliseconds() | Returns the milliseconds field of the Date. |
| getMinutes() | Return the minutes field of the Date where the value is a Number from 0 to 59. |
| getMonth() | Returns the month of the year as a value between 0 and 11. |
| getSeconds() | Return the seconds field of the Date where the value is a Number from 0 to 59. |
| getTime() | Returns the internal, millisecond representation of the Date object. |
| getTimezoneOffset() | Returns the difference between local time and Greenwich Mean Time (GMT) in minutes. |
| getUTCDate() | Returns the day of the month where the value is a Number from 1 to 31 when date is expressed in universal time. |
| getUTCDay() | Returns the day of the week where the value is a Number from 0 to 6 when date is expressed in universal time. |
| getUTCFullYear() | Returns the year when the Date is expressed in universal time. |
| getUTCHours() | Return the hours field, expressed in universal time, of the Date where the value is a Number from 0 (midnight) to 23 (11 PM). |
| getUTCMilliseconds() | Returns the milliseconds field, expressed in universal time, of the Date. |
| getUTCMinutes() | Return the minutes field, expressed in universal time, of the Date where the value is a Number from 0 to 59. |
| getUTCMonth() | Returns the month of the year that results when the Date is expressed in universal time. |
| getUTCSeconds() | Return the seconds field, expressed in universal time, of the Date where the value is a Number from 0 to 59. |
| static now() | Returns the number of milliseconds since midnight of January 1, 1970 up until now. |
| static parse(String) | Takes a date string and returns the number of milliseconds since midnight of January 1, 1970. |
| setDate(Number) | Sets the day of the month where the value is a Number from 1 to 31. |
| setFullYear(Number, Number…) | Sets the full year of Date where the value must be a four-digit Number. |
| setHours(Number, Number…) | Sets the hours field of this Date instance. |
| setMilliseconds(Number) | Sets the milliseconds field of this Date instance. |
| setMinutes(Number, Number…) | Sets the minutes field of this Date instance. |
| setMonth(Number, Number…) | Sets the month of the year where the value is a Number from 0 to 11. |
| setSeconds(Number, Number…) | Sets the seconds field of this Date instance. |
| setTime(Number) | Sets the number of milliseconds between the desired date and time and January 1, 1970. |
| setUTCDate(Number) | Sets the day of the month, expressed in universal time, where the value is a Number from 1 to 31. |
| setUTCFullYear(Number, Number…) | Sets the full year, expressed in universal time, of Date where the value must be a four-digit Number. |
| setUTCHours(Number, Number…) | Sets the hours field, expressed in universal time, of this Date instance. |
| setUTCMilliseconds(Number) | Sets the milliseconds field, expressed in universal time, of this Date instance. |
| setUTCMinutes(Number, Number…) | Sets the minutes field, expressed in universal time, of this Date instance. |
| setUTCMonth(Number, Number…) | Sets the month of the year, expressed in universal time, where the value is a Number from 0 to 11. |
| setUTCSeconds(Number, Number…) | Sets the seconds field, expressed in universal time, of this Date instance. |
| toDateString() | Returns the Date as a String value where the value represents the date portion of the Date in the default locale (en_US). |
| toISOString() | This function returns a string value represent the instance in time represented by this Date object. |
| toJSON(String) | This function returns the same string as Date.prototype.toISOString(). |
| toLocaleDateString() | Returns the Date as a String value where the value represents the date portion of the Date in the default locale (en_US). |
| toLocaleString() | Returns the Date as a String using the default locale (en_US). |
| toLocaleTimeString() | Returns the Date as a String value where the value represents the time portion of the Date in the default locale (en_US). |
| toTimeString() | Returns the Date as a String value where the value represents the time portion of the Date in the default locale (en_US). |
| toUTCString() | Returns a String representation of this Date, expressed in universal time. |
| valueOf() | Returns the value of this Date represented in milliseconds. |