Intl.DateTimeFormat() constructor
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2017.
The Intl.DateTimeFormat()
constructor creates Intl.DateTimeFormat
objects.
Try it
Syntax
new Intl.DateTimeFormat()
new Intl.DateTimeFormat(locales)
new Intl.DateTimeFormat(locales, options)
Intl.DateTimeFormat()
Intl.DateTimeFormat(locales)
Intl.DateTimeFormat(locales, options)
Note: Intl.DateTimeFormat()
can be called with or without new
. Both create a new Intl.DateTimeFormat
instance. However, there's a special behavior when it's called without new
and the this
value is another Intl.DateTimeFormat
instance; see Return value.
Parameters
locales
Optional-
A string with a BCP 47 language tag or an
Intl.Locale
instance, or an array of such locale identifiers. The runtime's default locale is used whenundefined
is passed or when none of the specified locale identifiers is supported. For the general form and interpretation of thelocales
argument, see the parameter description on theIntl
main page.The following Unicode extension key is allowed:
These keys can also be set with
options
(as listed below). When both are set, theoptions
property takes precedence. options
Optional-
An object. For ease of reading, the property list is broken into sections based on their purposes, including locale options, date-time component options, and style shortcuts.
Locale options
localeMatcher
-
The locale matching algorithm to use. Possible values are
"lookup"
and"best fit"
; the default is"best fit"
. For information about this option, see Locale identification and negotiation. calendar
-
The calendar to use, such as
"chinese"
,"gregory"
,"persian"
, and so on. For a list of supported calendar types, seeIntl.Locale.prototype.getCalendars()
. This option can also be set through theca
Unicode extension key; if both are provided, thisoptions
property takes precedence. numberingSystem
-
The numbering system to use for number formatting, such as
"arab"
,"hans"
,"mathsans"
, and so on. For a list of supported numbering system types, seeIntl.Locale.prototype.getNumberingSystems()
. This option can also be set through thenu
Unicode extension key; if both are provided, thisoptions
property takes precedence. hour12
-
Whether to use 12-hour time (as opposed to 24-hour time). Possible values are
true
andfalse
; the default is locale dependent. Whentrue
, this option setshourCycle
to either"h11"
or"h12"
, depending on the locale. Whenfalse
, it setshourCycle
to"h23"
.hour12
overrides both thehc
locale extension tag and thehourCycle
option, should either or both of those be present. hourCycle
-
The hour cycle to use. Possible values are
"h11"
,"h12"
,"h23"
, and"h24"
. This option can also be set through thehc
Unicode extension key; if both are provided, thisoptions
property takes precedence. timeZone
-
The time zone to use. Time zone names correspond to the Zone and Link names of the IANA Time Zone Database, such as
"UTC"
,"Asia/Shanghai"
,"Asia/Kolkata"
, and"America/New_York"
. Additionally, time zones can be given as UTC offsets in the format "±hh:mm", "±hhmm", or "±hh", for example as"+01:00"
,"-2359"
, or"+23"
. The default is the runtime's default time zone.
Date-time component options
weekday
-
The representation of the weekday. Possible values are:
era
-
The representation of the era. Possible values are:
year
-
The representation of the year. Possible values are
"numeric"
and"2-digit"
. month
-
The representation of the month. Possible values are:
day
-
The representation of the day. Possible values are
"numeric"
and"2-digit"
. dayPeriod
-
The formatting style used for day periods like "in the morning", "am", "noon", "n" etc. Possible values are
"narrow"
,"short"
, and"long"
.Note: This option only has an effect if a 12-hour clock (
hourCycle: "h12"
orhourCycle: "h11"
) is used. Many locales use the same string irrespective of the width specified. hour
-
The representation of the hour. Possible values are
"numeric"
and"2-digit"
. minute
-
The representation of the minute. Possible values are
"numeric"
and"2-digit"
. second
-
The representation of the second. Possible values are
"numeric"
and"2-digit"
. fractionalSecondDigits
-
The number of digits used to represent fractions of a second (any additional digits are truncated). Possible values are from
1
to3
. timeZoneName
-
The localized representation of the time zone name. Possible values are:
"long"
-
Long localized form (e.g.,
Pacific Standard Time
,Nordamerikanische Westküsten-Normalzeit
) "short"
-
Short localized form (e.g.:
PST
,GMT-8
) "shortOffset"
-
Short localized GMT format (e.g.,
GMT-8
) "longOffset"
-
Long localized GMT format (e.g.,
GMT-08:00
) "shortGeneric"
-
Short generic non-location format (e.g.:
PT
,Los Angeles Zeit
). "longGeneric"
-
Long generic non-location format (e.g.:
Pacific Time
,Nordamerikanische Westküstenzeit
)
Note: Timezone display may fall back to another format if a required string is unavailable. For example, the non-location formats should display the timezone without a specific country/city location like "Pacific Time", but may fall back to a timezone like "Los Angeles Time".
The default value for each date-time component option is undefined
, but if all component properties are undefined
, then year
, month
, and day
default to "numeric"
. If any of the date-time component options is specified, then dateStyle
and timeStyle
must be undefined
.
formatMatcher
-
The format matching algorithm to use. Possible values are
"basic"
and"best fit"
; the default is"best fit"
. Implementations are required to support displaying at least the following subsets of date-time components:weekday
,year
,month
,day
,hour
,minute
,second
weekday
,year
,month
,day
year
,month
,day
year
,month
month
,day
hour
,minute
,second
hour
,minute
Implementations may support other subsets, and requests will be negotiated against all available subset-representation combinations to find the best match. The algorithm for
"best fit"
is implementation-defined, and"basic"
is defined by the spec. This option is only used when bothdateStyle
andtimeStyle
areundefined
(so that each date-time component's format is individually customizable).
Style shortcuts
dateStyle
-
The date formatting style to use. Possible values are
"full"
,"long"
,"medium"
, and"short"
. It expands to styles forweekday
,day
,month
,year
, andera
, with the exact combination of values depending on the locale. timeStyle
-
The time formatting style to use. Possible values are
"full"
,"long"
,"medium"
, and"short"
. It expands to styles forhour
,minute
,second
, andtimeZoneName
, with the exact combination of values depending on the locale.
Note: dateStyle
and timeStyle
can be used with each other, but not with other date-time component options (e.g. weekday
, hour
, month
, etc.).
Return value
A new Intl.DateTimeFormat
object.
Note: The text below describes behavior that is marked by the specification as "optional". It may not work in all environments. Check the browser compatibility table.
Normally, Intl.DateTimeFormat()
can be called with or without new
, and a new Intl.DateTimeFormat
instance is returned in both cases. However, if the this
value is an object that is instanceof
Intl.DateTimeFormat
(doesn't necessarily mean it's created via new Intl.DateTimeFormat
; just that it has Intl.DateTimeFormat.prototype
in its prototype chain), then the value of this
is returned instead, with the newly created Intl.DateTimeFormat
object hidden in a [Symbol(IntlLegacyConstructedSymbol)]
property (a unique symbol that's reused between instances).
const formatter = Intl.DateTimeFormat.call(
{ __proto__: Intl.DateTimeFormat.prototype },
"en-US",
{ dateStyle: "full" },
);
console.log(Object.getOwnPropertyDescriptors(formatter));
// {
// [Symbol(IntlLegacyConstructedSymbol)]: {
// value: DateTimeFormat [Intl.DateTimeFormat] {},
// writable: false,
// enumerable: false,
// configurable: false
// }
// }
Note that there's only one actual Intl.DateTimeFormat
instance here: the one hidden in [Symbol(IntlLegacyConstructedSymbol)]
. Calling the format()
and resolvedOptions()
methods on formatter
would correctly use the options stored in that instance, but calling all other methods (e.g. formatRange()
) would fail: "TypeError: formatRange method called on incompatible Object", because those methods don't consult the hidden instance's options.
This behavior, called ChainDateTimeFormat
, does not happen when Intl.DateTimeFormat()
is called without new
but with this
set to anything else that's not an instanceof Intl.DateTimeFormat
. If you call it directly as Intl.DateTimeFormat()
, the this
value is Intl
, and a new Intl.DateTimeFormat
instance is created normally.
Exceptions
RangeError
-
Thrown if
locales
oroptions
contain invalid values.
Examples
Using DateTimeFormat
In basic use without specifying a locale, DateTimeFormat
uses the default
locale and default options.
const date = new Date(Date.UTC(2012, 11, 20, 3, 0, 0));
// toLocaleString without arguments depends on the implementation,
// the default locale, and the default time zone
console.log(new Intl.DateTimeFormat().format(date));
// "12/19/2012" if run with en-US locale (language) and time zone America/Los_Angeles (UTC-0800)
Using timeStyle and dateStyle
dateStyle
and timeStyle
provide a shortcut for setting multiple date-time component options at once. For example, for en-US
, dateStyle: "short"
is equivalent to setting year: "2-digit", month: "numeric", day: "numeric"
, and timeStyle: "short"
is equivalent to setting hour: "numeric", minute: "numeric"
.
const shortTime = new Intl.DateTimeFormat("en-US", {
timeStyle: "short",
});
console.log(shortTime.format(Date.now())); // "1:31 PM"
const shortDate = new Intl.DateTimeFormat("en-US", {
dateStyle: "short",
});
console.log(shortDate.format(Date.now())); // "7/7/20"
const mediumTime = new Intl.DateTimeFormat("en-US", {
timeStyle: "medium",
dateStyle: "short",
});
console.log(mediumTime.format(Date.now())); // "7/7/20, 1:31:55 PM"
However, the exact (locale dependent) component styles they resolve to are not included in the resolved options. This ensures the result of resolvedOptions()
can be passed directly to the Intl.DateTimeFormat()
constructor (because an options
object with both dateStyle
or timeStyle
and individual date or time component styles is not valid).
console.log(shortDate.resolvedOptions().year); // undefined
Using dayPeriod
Use the dayPeriod
option to output a string for the times of day ("in the morning", "at night", "noon", etc.). Note, that this only works when formatting for a 12 hour clock (hourCycle: 'h12'
or hourCycle: 'h11'
) and that for many locales the strings are the same irrespective of the value passed for the dayPeriod
.
const date = Date.UTC(2012, 11, 17, 4, 0, 42);
console.log(
new Intl.DateTimeFormat("en-GB", {
hour: "numeric",
hourCycle: "h12",
dayPeriod: "short",
timeZone: "UTC",
}).format(date),
);
// 4 at night" (same formatting in en-GB for all dayPeriod values)
console.log(
new Intl.DateTimeFormat("fr", {
hour: "numeric",
hourCycle: "h12",
dayPeriod: "narrow",
timeZone: "UTC",
}).format(date),
);
// "4 mat." (same output in French for both narrow/short dayPeriod)
console.log(
new Intl.DateTimeFormat("fr", {
hour: "numeric",
hourCycle: "h12",
dayPeriod: "long",
timeZone: "UTC",
}).format(date),
);
// "4 du matin"
Using timeZoneName
Use the timeZoneName
option to output a string for the timezone ("GMT", "Pacific Time", etc.).
const date = Date.UTC(2021, 11, 17, 3, 0, 42);
const timezoneNames = [
"short",
"long",
"shortOffset",
"longOffset",
"shortGeneric",
"longGeneric",
];
for (const zoneName of timezoneNames) {
// Do something with currentValue
const formatter = new Intl.DateTimeFormat("en-US", {
timeZone: "America/Los_Angeles",
timeZoneName: zoneName,
});
console.log(`${zoneName}: ${formatter.format(date)}`);
}
// Logs:
// short: 12/16/2021, PST
// long: 12/16/2021, Pacific Standard Time
// shortOffset: 12/16/2021, GMT-8
// longOffset: 12/16/2021, GMT-08:00
// shortGeneric: 12/16/2021, PT
// longGeneric: 12/16/2021, Pacific Time
Specifications
Specification |
---|
ECMAScript Internationalization API Specification # sec-intl-datetimeformat-constructor |
Browser compatibility
BCD tables only load in the browser