Creates a DateTime from various input. A single argument may be date input or an options object. Two arguments represents input and an options object. If no arguments are passed the DateTime will be the current date.
If the input is a string that specifies a timezone or offset it will be used
as is. Otherwise if the timeZone
option is specified or a global timezone
is set it will be parsed in that timezone. If no timezone can be derived the
system offset will be used instead.
Static
DATE_Static
DATE_Static
DATE_Static
DATE_Static
DATETIME_Static
DATETIME_Static
DATETIME_Static
DATETIME_Static
MONTH_Static
MONTH_Static
optionsStatic
TIME_Static
TIME_Static
TIME_Static
TIME_Static
TIME_Advances the DateTime. When the first argument is a number it must be followed by a unit advancing by that many units. If the first argument is an object it will advance the date by multiple units.
Optional
unit: TimeUnitReturns a clone of the DateTime.
Returns the number of days in the month.
Advances the DateTime to the end of the specified unit.
Advances the DateTime to the end of the calendar month. This may push the date into the next month.
Advances the DateTime to the end of the day.
Advances the DateTime to the end of the month.
Advances the DateTime to the end of the week.
Advances the DateTime to the end of the year.
Formats the DateTime using various formats accessible as static members of the DateTime class.
Gets the date of the DateTime.
Gets the day of week of the DateTime from 0 to 6.
Gets the year of the DateTime.
Gets the hours of the DateTime.
Gets the milliseconds of the DateTime.
Gets the minutes of the DateTime.
Gets the month of the DateTime. Note that months are zero based so January is 0.
Gets the seconds of the DateTime.
Returns the unix timestamp of the DateTime.
Alias for getTimeZone.
Returns the IANA timezone.
Alias for getTimeZoneOffset.
Gets the timezone offset of the DateTime in minutes. This may be the offset of the local or global timezone if one is set, otherwise will be the system offset.
Gets the date in UTC.
Gets the day in UTC.
Gets the year in UTC.
Gets the hours in UTC.
Gets the milliseconds in UTC.
Gets the minutes in UTC.
Gets the month in UTC.
Gets the seconds in UTC.
Alias for getFullYear
.
Returns true if the DateTime is equivalent to the passed value..
Returns true if the DateTime is invalid.
Returns true if the DateTime is valid.
Formats the DateTime in a relative format. Allowed options are:
now
- Offset to format relative to. Defaults to the current time.min
- When set will return undefined if the DateTime is before this date.max
- When set will return undefined if the DateTime is after this date.numeric
- Passed to Intl.RelativeTimeFormat. Defaults to auto
but may
also be always
.Optional
options: { max?: DateLike; min?: DateLike; now?: DateLike; numeric?: string }Resets the time to 00:00:00.000. Equivalent to startOfDay
.
Rewinds the DateTime. When the first argument is a number it must be followed by a unit rewinding by that many units. If the first argument is an object it will rewind the date by multiple units.
Optional
unit: TimeUnitSets components of the DateTime by name.
Optional
day?: numberThe day of the month to set.
Optional
hour?: numberThe hours to set.
Optional
hours?: numberThe hours to set.
Optional
millisecond?: numberThe milliseconds to set.
Optional
milliseconds?: numberThe milliseconds to set.
Optional
minute?: numberThe minutes to set.
Optional
minutes?: numberThe minutes to set.
Optional
month?: numberThe month to set.
Optional
second?: numberThe seconds to set.
Optional
seconds?: numberThe seconds to set.
Optional
year?: numberThe year to set.
Sets the arguments for the UTC time.
A list of arguments representing the date components.
Sets the month of the DateTime. Note that months are zero based so January is 0.
Rewinds the DateTime to the start of the specified unit.
Rewinds the DateTime to the start of the calendar month. This may push the date into the previous month.
Rewinds the DateTime to the start of the day.
Rewinds the DateTime to the start of the month.
Rewinds the DateTime to the start of the week.
Rewinds the DateTime to the start of the year.
Returns the ISO-8601 representation of the date component of the DateTime in UTC.
Returns the ISO-8601 representation of the DateTime.
Returns the ISO-8601 representation of the time component of the DateTime in UTC.
Equivalent to toISOString
.
Returns a default formatted string that represents the DateTime.
Returns the numeric value of the DateTime instance.
Static
clampClamps the value passed to the minimum and maximum.
DateTime
Static
getGets the meridiem tokens (am/pm) a given locale. Options are:
locale
- If not passed will use the global locale or fall
back to the system locale.lower
- Return the tokens in lower case.style
- When "short" will return a/p for am/pm tokens only.Static
getGets the months of the year for a given locale. Options are:
locale
- If not passed will use the global locale or fall
back to the system locale.style
- Will be passed as month
to Intl.DateTimeFormat. Default long
.Static
getGets the weekday names for a given locale. Options are:
locale
- If not passed will use the global locale or fall
back to the system locale.start
- An explicit start day of the week, 0 for sunday, 6 for Saturday.
Will fall back to the locale defined first day.style
- Will be passed as weekday
to Intl.DateTimeFormat. Default long
.Static
maxReturns the maximum value passed in as a DateTime.
DateTime
Static
minReturns the minimum value passed in as a DateTime.
DateTime
Static
setSets the global locale.
Static
setSets global options.
Static
setSets the global timezone.
A timezone and locale aware DateTime. This class assumes support for:
Intl.DateTimeFormat
Intl.RelativeTimeFormat