UNB/ CS/ David Bremner/ teaching/ cs2613/ books/ mdn/ Reference/ Global Objects/ Date

JavaScript Date objects represent a single moment in time in a platform-independent format. Date objects encapsulate an integral number that represents milliseconds since the midnight at the beginning of January 1, 1970, UTC (the epoch).

Note: TC39 is working on Temporal, a new Date/Time API. Read more about it on the Igalia blog. It is not yet ready for production use!

Description

The epoch, timestamps, and invalid date

A JavaScript date is fundamentally specified as the time in milliseconds that has elapsed since the epoch, which is defined as the midnight at the beginning of January 1, 1970, UTC (equivalent to the UNIX epoch). This timestamp is timezone-agnostic and uniquely defines an instant in history.

Note: While the time value at the heart of a Date object is UTC, the basic methods to fetch the date and time or its components all work in the local (i.e. host system) time zone and offset.

The maximum timestamp representable by a Date object is slightly smaller than the maximum safe integer (Number.MAX_SAFE_INTEGER, which is 9,007,199,254,740,991). A Date object can represent a maximum of ±8,640,000,000,000,000 milliseconds, or ±100,000,000 (one hundred million) days, relative to the epoch. This is the range from April 20, 271821 BC to September 13, 275760 AD. Any attempt to represent a time outside this range results in the Date object holding a timestamp value of NaN, which is an "Invalid Date".

console.log(new Date(8.64e15).toString()); // "Sat Sep 13 275760 00:00:00 GMT+0000 (Coordinated Universal Time)"
console.log(new Date(8.64e15 + 1).toString()); // "Invalid Date"

There are various methods that allow you to interact with the timestamp stored in the date:

Date components and time zones

A date is represented internally as a single number, the timestamp. When interacting with it, the timestamp needs to be interpreted as a structured date-and-time representation. There are always two ways to interpret a timestamp: as a local time or as a Coordinated Universal Time (UTC), the global standard time defined by the World Time Standard. The local timezone is not stored in the date object, but is determined by the host environment (user's device).

Note: UTC should not be confused with the Greenwich Mean Time (GMT), because they are not always equal — this is explained in more detail in the linked Wikipedia page.

For example, the timestamp 0 represents a unique instant in history, but it can be interpreted in two ways:

The getTimezoneOffset() method returns the difference between UTC and the local time in minutes. Note that the timezone offset does not only depend on the current timezone, but also on the time represented by the Date object, because of daylight saving time and historical changes. In essence, the timezone offset is the offset from UTC time, at the time represented by the Date object and at the location of the host environment.

There are two groups of Date methods: one group gets and sets various date components by interpreting the timestamp as a local time, while the other uses UTC.

Component Local UTC
Get Set Get Set
Year [getFullYear()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/getFullYear) [setFullYear()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/setFullYear) [getUTCFullYear()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/getUTCFullYear) [setUTCFullYear()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/setUTCFullYear)
Month [getMonth()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/getMonth) [setMonth()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/setMonth) [getUTCMonth()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/getUTCMonth) [setUTCMonth()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/setUTCMonth)
Date (of month) [getDate()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/getDate) [setDate()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/setDate) [getUTCDate()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/getUTCDate) [setUTCDate()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/setUTCDate)
Hours [getHours()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/getHours) [setHours()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/setHours) [getUTCHours()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/getUTCHours) [setUTCHours()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/setUTCHours)
Minutes [getMinutes()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/getMinutes) [setMinutes()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/setMinutes) [getUTCMinutes()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/getUTCMinutes) [setUTCMinutes()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/setUTCMinutes)
Seconds [getSeconds()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/getSeconds) [setSeconds()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/setSeconds) [getUTCSeconds()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/getUTCSeconds) [setUTCSeconds()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/setUTCSeconds)
Milliseconds [getMilliseconds()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/getMilliseconds) [setMilliseconds()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/setMilliseconds) [getUTCMilliseconds()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/getUTCMilliseconds) [setUTCMilliseconds()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/setUTCMilliseconds)
Day (of week) [getDay()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/getDay) N/A [getUTCDay()](/~bremner/teaching/cs2613/books/mdn/Reference/Global_Objects/Date/getUTCDay) N/A

The Date() constructor can be called with two or more arguments, in which case they are interpreted as the year, month, day, hour, minute, second, and millisecond, respectively, in local time. Date.UTC works similarly, but it interprets the components as UTC time and also accepts a single argument representing the year.

Note: Some methods, including the Date() constructor, Date.UTC(), and the deprecated getYear()/setYear() methods, interpret a two-digit year as a year in the 1900s. For example, new Date(99, 5, 24) is interpreted as June 24, 1999, not June 24, 99. See Interpretation of two-digit years for more information.

When a segment overflows or underflows its expected range, it usually "carries over to" or "borrows from" the higher segment. For example, if the month is set to 12 (months are zero-based, so December is 11), it become the January of the next year. If the day of month is set to 0, it becomes the last day of the previous month. This also applies to dates specified with the date time string format.

Date time string format

There are many ways to format a date as a string. The JavaScript specification only specifies one format to be universally supported: the date time string format, a simplification of the ISO 8601 calendar date extended format. The format is as follows:

YYYY-MM-DDTHH:mm:ss.sssZ

Various components can be omitted, so the following are all valid:

For example, "2011-10-10" (date-only form), "2011-10-10T14:48:00" (date-time form), or "2011-10-10T14:48:00.000+09:00" (date-time form with milliseconds and time zone) are all valid date time strings.

When the time zone offset is absent, date-only forms are interpreted as a UTC time and date-time forms are interpreted as local time. This is due to a historical spec error that was not consistent with ISO 8601 but could not be changed due to web compatibility. See Broken Parser – A Web Reality Issue.

Date.parse and the Date() constructor both accept strings in the date time string format as input. Furthermore, implementations are allowed to support other date formats when the input fails to match this format.

The toISOString() method returns a string representation of the date in the date time string format, with the time zone offset always set to Z (UTC).

Note: You are encouraged to make sure your input conforms to the date time string format above for maximum compatibility, because support for other formats is not guaranteed. However, there are some formats that are supported in all major implementations — like format — in which case their usage can be acceptable. Always conduct cross-browser tests to ensure your code works in all target browsers. A library can help if many different formats are to be accommodated.

Non-standard strings can be parsed in any way as desired by the implementation, including the time zone — most implementations use the local time zone by default. Implementations are not required to return invalid date for out-of-bounds date components, although they usually do. A string may have in-bounds date components (with the bounds defined above), but does not represent a date in reality (for example, "February 30"). Implementations behave inconsistently in this case. The Date.parse() page offers more examples about these non-standard cases.

Other ways to format a date

See the Formats of toString method return values section for examples.

Constructor

Static methods

Instance properties

These properties are defined on Date.prototype and shared by all Date instances.

Instance methods

Examples

Several ways to create a Date object

The following examples show several ways to create JavaScript dates:

Note: Creating a date from a string has a lot of behavior inconsistencies. See date time string format for caveats on using different formats.

const today = new Date();
const birthday = new Date("December 17, 1995 03:24:00"); // DISCOURAGED: may not work in all runtimes
const birthday2 = new Date("1995-12-17T03:24:00"); // This is standardized and will work reliably
const birthday3 = new Date(1995, 11, 17); // the month is 0-indexed
const birthday4 = new Date(1995, 11, 17, 3, 24, 0);
const birthday5 = new Date(628021800000); // passing epoch timestamp

Formats of toString method return values

const date = new Date("2020-05-12T23:50:21.817Z");
date.toString(); // Tue May 12 2020 18:50:21 GMT-0500 (Central Daylight Time)
date.toDateString(); // Tue May 12 2020
date.toTimeString(); // 18:50:21 GMT-0500 (Central Daylight Time)
date[Symbol.toPrimitive]("string"); // Tue May 12 2020 18:50:21 GMT-0500 (Central Daylight Time)

date.toISOString(); // 2020-05-12T23:50:21.817Z
date.toJSON(); // 2020-05-12T23:50:21.817Z

date.toUTCString(); // Tue, 12 May 2020 23:50:21 GMT

date.toLocaleString(); // 5/12/2020, 6:50:21 PM
date.toLocaleDateString(); // 5/12/2020
date.toLocaleTimeString(); // 6:50:21 PM

To get Date, Month and Year or Time

const date = new Date("2000-01-17T16:45:30");
const [month, day, year] = [
  date.getMonth(),
  date.getDate(),
  date.getFullYear(),
];
// [0, 17, 2000] as month are 0-indexed
const [hour, minutes, seconds] = [
  date.getHours(),
  date.getMinutes(),
  date.getSeconds(),
];
// [16, 45, 30]

Interpretation of two-digit years

new Date() exhibits legacy undesirable, inconsistent behavior with two-digit year values; specifically, when a new Date() call is given a two-digit year value, that year value does not get treated as a literal year and used as-is but instead gets interpreted as a relative offset — in some cases as an offset from the year 1900, but in other cases, as an offset from the year 2000.

let date = new Date(98, 1); // Sun Feb 01 1998 00:00:00 GMT+0000 (GMT)
date = new Date(22, 1); // Wed Feb 01 1922 00:00:00 GMT+0000 (GMT)
date = new Date("2/1/22"); // Tue Feb 01 2022 00:00:00 GMT+0000 (GMT)

// Legacy method; always interprets two-digit year values as relative to 1900
date.setYear(98);
date.toString(); // Sun Feb 01 1998 00:00:00 GMT+0000 (GMT)
date.setYear(22);
date.toString(); // Wed Feb 01 1922 00:00:00 GMT+0000 (GMT)

So, to create and get dates between the years 0 and 99, instead use the preferred setFullYear() and getFullYear() methods:.

// Preferred method; never interprets any value as being a relative offset,
// but instead uses the year value as-is
date.setFullYear(98);
date.getFullYear(); // 98 (not 1998)
date.setFullYear(22);
date.getFullYear(); // 22 (not 1922, not 2022)

Calculating elapsed time

The following examples show how to determine the elapsed time between two JavaScript dates in milliseconds.

Due to the differing lengths of days (due to daylight saving changeover), months, and years, expressing elapsed time in units greater than hours, minutes, and seconds requires addressing a number of issues, and should be thoroughly researched before being attempted.

// Using Date objects
const start = Date.now();

// The event to time goes here:
doSomethingForALongTime();
const end = Date.now();
const elapsed = end - start; // elapsed time in milliseconds
// Using built-in methods
const start = new Date();

// The event to time goes here:
doSomethingForALongTime();
const end = new Date();
const elapsed = end.getTime() - start.getTime(); // elapsed time in milliseconds
// To test a function and get back its return
function printElapsedTime(testFn) {
  const startTime = Date.now();
  const result = testFn();
  const endTime = Date.now();

  console.log(`Elapsed time: ${String(endTime - startTime)} milliseconds`);
  return result;
}

const yourFunctionReturn = printElapsedTime(yourFunction);

Note: In browsers that support the 's high-resolution time feature, can provide more reliable and precise measurements of elapsed time than Date.now.

Get the number of seconds since the ECMAScript Epoch

const seconds = Math.floor(Date.now() / 1000);

In this case, it's important to return only an integer—so a simple division won't do. It's also important to only return actually elapsed seconds. (That's why this code uses Math.floor, and not Math.round.)

Specifications

Browser compatibility

See also