# Methods

- [Date.UTC()](/dateall/javascript/methods/date.utc.md): Returns the number of milliseconds in a date since midnight of January 1, 1970, according to UTC time
- [Date.now()](/dateall/javascript/methods/date.now.md): Returns the number of milliseconds since midnight Jan 1, 1970
- [Date.parse()](/dateall/javascript/methods/date.parse.md): Parses a date string and returns the number of milliseconds since January 1, 1970
- [Date.getDate()](/dateall/javascript/methods/date.getdate.md): Returns the day of the month (from 1-31)
- [Date.getDay()](/dateall/javascript/methods/date.getday.md): Returns the day of the week (from 0-6)
- [Date.getFullYear()](/dateall/javascript/methods/date.getfullyear.md): Returns the year
- [Date.getHours()](/dateall/javascript/methods/date.gethours.md): Returns the hour (from 0-23)
- [Date.getMilliseconds()](/dateall/javascript/methods/date.getmilliseconds.md): Returns the milliseconds (from 0-999)
- [Date.getMinutes()](/dateall/javascript/methods/date.getminutes.md): Returns the minutes (from 0-59)
- [Date.getMonth()](/dateall/javascript/methods/date.getmonth.md): Returns the month (from 0-11)
- [Date.getSeconds()](/dateall/javascript/methods/date.getseconds.md): Returns the seconds (from 0-59)
- [Date.getTime()](/dateall/javascript/methods/date.gettime.md): Returns the number of milliseconds since midnight Jan 1 1970, and a specified date
- [Date.getTimezoneOffset()](/dateall/javascript/methods/date.gettimezoneoffset.md): Returns the time difference between UTC time and local time, in minutes
- [Date.getUTCDate()](/dateall/javascript/methods/date.getutcdate.md): Returns the day of the month, according to universal time (from 1-31)
- [Date.getUTCDay()](/dateall/javascript/methods/date.getutcday.md): Returns the day of the week, according to universal time (from 0-6)
- [Date.getUTCFullYear()](/dateall/javascript/methods/date.getutcfullyear.md): Returns the year, according to universal time
- [Date.getUTCHours()](/dateall/javascript/methods/date.getutchours.md): Returns the hour, according to universal time (from 0-23)
- [Date.getUTCMilliseconds()](/dateall/javascript/methods/date.getutcmilliseconds.md): Returns the milliseconds, according to universal time (from 0-999)
- [Date.getUTCMinutes()](/dateall/javascript/methods/date.getutcminutes.md): Returns the minutes, according to universal time (from 0-59)
- [Date.getUTCMonth()](/dateall/javascript/methods/date.getutcmonth.md): Returns the month, according to univer
- [Date.getUTCSeconds()](/dateall/javascript/methods/date.getutcseconds.md): Returns the seconds, according to universal time (from 0-59)
- [Date.setDate()](/dateall/javascript/methods/date.setdate.md): Sets the day of the month of a date object.
- [Date.setFullYear()](/dateall/javascript/methods/date.setfullyear.md): Sets the year of a date object
- [Date.setHours()](/dateall/javascript/methods/date.sethours.md): Sets the hour of a date object
- [Date.setMilliseconds()](/dateall/javascript/methods/date.setmilliseconds.md): Sets the milliseconds of a date object
- [Date.setMinutes()](/dateall/javascript/methods/date.setminutes.md): Set the minutes of a date object
- [Date.setMonth()](/dateall/javascript/methods/date.setmonth.md): Sets the month of a date object
- [Date.setSeconds()](/dateall/javascript/methods/date.setseconds.md): Sets the seconds of a date object
- [Date.setTime()](/dateall/javascript/methods/date.settime.md): Sets a date to a specified number of milliseconds after/before January 1, 1970
- [Date.setUTCDate()](/dateall/javascript/methods/date.setutcdate.md): Sets the day of the month of a date object, according to universal time
- [Date.setUTCFullYear()](/dateall/javascript/methods/date.setutcfullyear.md): Sets the year of a date object, according to universal time
- [Date.setUTCHours()](/dateall/javascript/methods/date.setutchours.md): Sets the hour of a date object, according to universal time
- [Date.setUTCMilliseconds()](/dateall/javascript/methods/date.setutcmilliseconds.md): Sets the milliseconds of a date object, according to universal time
- [Date.setUTCMinutes()](/dateall/javascript/methods/date.setutcminutes.md): Set the minutes of a date object, according to universal time
- [Date.setUTCMonth()](/dateall/javascript/methods/date.setutcmonth.md): Sets the month of a date object, according to universal time
- [Date.setUTCSeconds()](/dateall/javascript/methods/date.setutcseconds.md): Set the seconds of a date object, according to universal time
- [Date.toDateString()](/dateall/javascript/methods/date.todatestring.md): Converts the date portion of a Date object into a readable string
- [Date.toISOString()](/dateall/javascript/methods/date.toisostring.md): Returns the date as a string, using the ISO standard
- [Date.toJSON()](/dateall/javascript/methods/date.tojson.md): Returns the date as a string, formatted as a JSON date
- [Date.toLocaleDateString()](/dateall/javascript/methods/date.tolocaledatestring.md): Returns the date portion of a Date object as a string, using locale conventions
- [Date.toLocaleString()](/dateall/javascript/methods/date.tolocalestring.md): Converts a Date object to a string, using locale conventions
- [Date.toLocaleTimeString()](/dateall/javascript/methods/date.tolocaletimestring.md): Returns the time portion of a Date object as a string, using locale conventions
- [Date.toString()](/dateall/javascript/methods/date.tostring.md): Converts a Date object to a string
- [Date.toTimeString()](/dateall/javascript/methods/date.totimestring.md): Converts the time portion of a Date object to a string
- [Date.toUTCString()](/dateall/javascript/methods/date.toutcstring.md): Converts a Date object to a string, according to universal time
- [Date.valueOf()](/dateall/javascript/methods/date.valueof.md): Returns the primitive value of a Date object
