Creates a JavaScript Date
instance that represents a single moment in time. Date
objects are based on a time value that is the number of milliseconds since 1 January 1970 UTC.
new Date(); new Date(value); new Date(dateString); new Date(year, month, day, hours, minutes, seconds, milliseconds);
Note: JavaScript Date
objects can only be instantiated by calling JavaScript Date
as a constructor: calling it as a regular function (i.e. without the new
operator) will return a string rather than a Date
object; unlike other JavaScript object types, JavaScript Date
objects have no literal syntax.
Note: The argument month
is 0-based. This means that January = 0
and December = 11
.
Note: Where Date
is called as a constructor with more than one argument, if values are greater than their logical range (e.g. 13 is provided as the month value or 70 for the minute value), the adjacent value will be adjusted. E.g. new Date(2013, 13, 1)
is equivalent to new Date(2014, 1, 1)
, both create a date for 2014-02-01
(note that the month is 0-based). Similarly for other values: new Date(2013, 2, 1, 0, 70)
is equivalent to new Date(2013, 2, 1, 1, 10)
which both create a date for 2013-03-01T01:10:00
.
Note: Where Date
is called as a constructor with more than one argument, the specifed arguments represent local time. If UTC is desired, use new Date(
with the same arguments.Date.UTC(...)
)
value
dateString
Date.parse()
method (IETF-compliant RFC 2822 timestamps and also a version of ISO8601). Note: parsing of date strings with the Date
constructor (and Date.parse
, they are equivalent) is strongly discouraged due to browser differences and inconsistencies. Support for RFC 2822 format strings is by convention only. Support for ISO 8601 formats differs in that date-only strings (e.g. "1970-01-01") are treated as UTC, not local.
year
month
day
hours
minutes
seconds
milliseconds
Date
object for the current date and time according to system settings.Date
object range is -100,000,000 days to 100,000,000 days relative to January 1, 1970 UTC.Date
object provides uniform behavior across platforms. The time value can be passed between systems to create a date that represents the same moment in time.Date
object supports a number of UTC (universal) methods, as well as local time methods. UTC, also known as Greenwich Mean Time (GMT), refers to the time as set by the World Time Standard. The local time is the time known to the computer where JavaScript is executed.Date
as a function (i.e., without the new
operator) will return a string representing the current date and time.Date.prototype
Date
object.Date.length
Date.length
is 7. This is the number of arguments handled by the constructor.Date.now()
Date.parse()
Note: Parsing of strings with Date.parse
is strongly discouraged due to browser differences and inconsistencies.
Date.UTC()
Date
instancesAll Date
instances inherit from Date.prototype
. The prototype object of the Date
constructor can be modified to affect all Date
instances.
Date.prototype.getDate()
Date.prototype.getDay()
Date.prototype.getFullYear()
Date.prototype.getHours()
Date.prototype.getMilliseconds()
Date.prototype.getMinutes()
Date.prototype.getMonth()
Date.prototype.getSeconds()
Date.prototype.getTime()
Date.prototype.getTimezoneOffset()
Date.prototype.getUTCDate()
Date.prototype.getUTCDay()
Date.prototype.getUTCFullYear()
Date.prototype.getUTCHours()
Date.prototype.getUTCMilliseconds()
Date.prototype.getUTCMinutes()
Date.prototype.getUTCMonth()
Date.prototype.getUTCSeconds()
Date.prototype.getYear()
getFullYear()
instead.Date.prototype.setDate()
Date.prototype.setFullYear()
Date.prototype.setHours()
Date.prototype.setMilliseconds()
Date.prototype.setMinutes()
Date.prototype.setMonth()
Date.prototype.setSeconds()
Date.prototype.setTime()
Date
object to the time represented by a number of milliseconds since January 1, 1970, 00:00:00 UTC, allowing for negative numbers for times prior.Date.prototype.setUTCDate()
Date.prototype.setUTCFullYear()
Date.prototype.setUTCHours()
Date.prototype.setUTCMilliseconds()
Date.prototype.setUTCMinutes()
Date.prototype.setUTCMonth()
Date.prototype.setUTCSeconds()
Date.prototype.setYear()
setFullYear()
instead.Date.prototype.toDateString()
Date
as a human-readable string.Date.prototype.toISOString()
Date.prototype.toJSON()
Date
using toISOString()
. Intended for use by JSON.stringify()
.Date.prototype.toGMTString()
Date
based on the GMT (UT) time zone. Use toUTCString()
instead.Date.prototype.toLocaleDateString()
Date.prototype.toLocaleFormat()
Date.prototype.toLocaleString()
Object.prototype.toLocaleString()
method.Date.prototype.toLocaleTimeString()
Date.prototype.toSource()
Date
object; you can use this value to create a new object. Overrides the Object.prototype.toSource()
method.Date.prototype.toString()
Date
object. Overrides the Object.prototype.toString()
method.Date.prototype.toTimeString()
Date
as a human-readable string.Date.prototype.toUTCString()
Date.prototype.valueOf()
Date
object. Overrides the Object.prototype.valueOf()
method.Date
objectThe following examples show several ways to create JavaScript dates:
Note: parsing of date strings with the Date
constructor (and Date.parse
, they are equivalent) is strongly discouraged due to browser differences and inconsistencies.
var today = new Date(); var birthday = new Date('December 17, 1995 03:24:00'); var birthday = new Date('1995-12-17T03:24:00'); var birthday = new Date(1995, 11, 17); var birthday = new Date(1995, 11, 17, 3, 24, 0);
In order to create and get dates between the years 0 and 99 the Date.prototype.setFullYear()
and Date.prototype.getFullYear()
methods should be used.
var date = new Date(98, 1); // Sun Feb 01 1998 00:00:00 GMT+0000 (GMT) // Deprecated method, 98 maps to 1998 here as well date.setYear(98); // Sun Feb 01 1998 00:00:00 GMT+0000 (GMT) date.setFullYear(98); // Sat Feb 01 0098 00:00:00 GMT+0000 (BST)
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 var start = Date.now(); // the event to time goes here: doSomethingForALongTime(); var end = Date.now(); var elapsed = end - start; // elapsed time in milliseconds
// using built-in methods var start = new Date(); // the event to time goes here: doSomethingForALongTime(); var end = new Date(); var elapsed = end.getTime() - start.getTime(); // elapsed time in milliseconds
// to test a function and get back its return function printElapsedTime(fTest) { var nStartTime = Date.now(), vReturn = fTest(), nEndTime = Date.now(); console.log('Elapsed time: ' + String(nEndTime - nStartTime) + ' milliseconds'); return vReturn; } var yourFunctionReturn = printElapsedTime(yourFunction);
Note: In browsers that support the Web Performance API's high-resolution time feature, Performance.now()
can provide more reliable and precise measurements of elapsed time than Date.now()
.
var seconds = Math.floor(Date.now() / 1000);
In this case it's important to return only a whole number (so a simple division won't do), and also to only return actually elapsed seconds (that's why this code uses Math.floor()
and not Math.round()
).
Specification | Status | Comment |
---|---|---|
ECMAScript Latest Draft (ECMA-262) The definition of 'Date' in that specification. | Draft | |
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'Date' in that specification. | Standard | |
ECMAScript 5.1 (ECMA-262) The definition of 'Date' in that specification. | Standard | |
ECMAScript 1st Edition (ECMA-262) | Standard | Initial definition. Implemented in JavaScript 1.1. |
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | Yes | Yes | Yes | Yes1 | Yes | Yes |
Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | Opera Android | iOS Safari | Samsung Internet |
---|---|---|---|---|---|---|---|
Basic support | Yes | Yes | Yes | Yes | Yes | Yes | ? |
1. The ISO8601 Date Format is not supported in Internet Explorer 8.
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date