Working with Date built-in object Flashcards
What is a Date
object in JavaScript?
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!
“Date - JavaScript | MDN” (MDN Web Docs). Retrieved March 11, 2024.
What is a timestamp also called epoch?
An integral number that represents milliseconds since 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 epoch, timestamps, and invalid date” (MDN Web Docs). Retrieved March 11, 2024.
What is the maximum timestamp representable by a Date
object?
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"
“The epoch, timestamps, and invalid date” (MDN Web Docs). Retrieved March 11, 2024.
How can you interact with the timestamp stored in the Date
object?
There are various methods that allow you to interact with the timestamp stored in the date:
You can interact with the timestamp value directly using the getTime()
and setTime()
methods.
The valueOf()
and @@toPrimitive]()
(when passed “number”) methods — which are automatically called in number coercion — return the timestamp, causing Date
objects to behave like their timestamps when used in number contexts.
All static methods (Date.now()
, Date.parse()
, and Date.UTC()
) return timestamps instead of Date objects.
The Date()
constructor can be called with a timestamp as the only argument.
“The epoch, timestamps, and invalid date” (MDN Web Docs). Retrieved March 11, 2024.
What are the 2 ways to interpret a timestamp?
- As a local time.
- 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:
As a UTC time, it is midnight at the beginning of January 1, 1970, UTC
,
As a local time in New York (UTC-5), it is 19:00:00 on December 31, 1969.
“Date components and time zones” (MDN Web Docs). Retrieved March 12, 2024.
How can you get the difference between UTC and the local time in minutes?
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.
“Date components and time zones” (MDN Web Docs). Retrieved March 12, 2024.
Which are the 2 groups of Date
methods?
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.
“Date components and time zones” (MDN Web Docs). Retrieved March 12, 2024.
What arguments can you pass to the Date()
constructor?
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
.
“Date components and time zones” (MDN Web Docs). Retrieved March 13, 2024.
What happens when a segment overflows or underflows its expected range?
A segment can be a year or a month or a day and so on.
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 components and time zones” (MDN Web Docs). Retrieved March 13, 2024.
Which is the universally supported date time string format in JavaScript
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
-
YYYY
is the year, with four digits (0000
to9999
), or as an expanded year of+
or-
followed by six digits. The sign is required for expanded years.-000000
is explicitly disallowed as a valid year. -
MM
is the month, with two digits (01
to12
). Defaults to01
. -
DD
is the day of the month, with two digits (01
to31
). Defaults to01
. -
T
is a literal character, which indicates the beginning of the time part of the string. TheT
is required when specifying the time part. -
HH
is the hour, with two digits (00
to23
). As a special case,24:00:00
is allowed, and is interpreted as midnight at the beginning of the next day. Defaults to00
. -
mm
is the minute, with two digits (00
to59
). Defaults to00
. -
ss
is the second, with two digits (00
to59
). Defaults to00
. -
sss
is the millisecond, with three digits (000
to999
). Defaults to000
. -
Z
is the timezone offset, which can either be the literal characterZ
(indicating UTC), or+
or-
followed byHH:mm
, the offset in hours and minutes from UTC.
Various components can be omitted, so the following are all valid:
- Date-only form:
YYYY
,YYYY-MM
,YYYY-MM-DD
- Date-time form: one of the above date-only forms, followed by
T
, followed byHH:mm
,HH:mm:ss
, orHH:mm:ss.sss
. Each combination can be followed by a time zone offset.
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.
Important
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 time string format” (MDN Web Docs). Retrieved March 13, 2024.