The Intl.RelativeTimeFormat() constructor creates Intl.RelativeTimeFormat objects.
Intl.RelativeTimeFormat() 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 2020.
Syntax
Parameters
localesOptional-
A string with a BCP 47 language tag or an
Intl.Localeinstance, or an array of such locale identifiers. The runtime's default locale is used whenundefinedis passed or when none of the specified locale identifiers is supported. For the general form and interpretation of thelocalesargument, see the parameter description on theIntlmain page.The following Unicode extension key is allowed:
nu-
See
numberingSystem.
This key can also be set with
options(as listed below). When both are set, theoptionsproperty takes precedence. optionsOptional-
An object containing the following properties, in the order they are retrieved (all of them are optional):
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. 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.supportedValuesOf(). This option can also be set through thenuUnicode extension key; if both are provided, thisoptionsproperty takes precedence. style-
The style of the formatted relative time. Possible values are:
"long"(default)-
E.g., "in 1 month"
"short"-
E.g., "in 1 mo."
"narrow"-
E.g., "in 1 mo.". The narrow style could be similar to the short style for some locales.
numeric-
Whether to use numeric values in the output. Possible values are
"always"and"auto"; the default is"always". When set to"auto", the output may use more idiomatic phrasing such as"yesterday"instead of"1 day ago".
Exceptions
RangeError-
Thrown if
localesoroptionscontain invalid values.
Examples
Basic format usage
The following example shows how to create a relative time formatter using the English language.
// Create a relative time formatter in your locale
// with default values explicitly passed in.
const rtf = new Intl.RelativeTimeFormat("en-US", {
numeric: "always", // other values: "auto"
style: "long", // other values: "short" or "narrow"
});
// Format relative time using negative value (-1).
rtf.format(-1, "day"); // "1 day ago"
// Format relative time using positive value (1).
rtf.format(1, "day"); // "in 1 day"
Using the auto option
If the numeric: "auto" option is passed, it will produce the string yesterday or tomorrow instead of 1 day ago or in 1 day. This is useful when you don't want to use numeric values in the output.
// Create a relative time formatter in your locale
// with numeric: "auto" option value passed in.
const rtf = new Intl.RelativeTimeFormat("en-US", { numeric: "auto" });
// Format relative time using negative value (-1).
rtf.format(-1, "day"); // "yesterday"
// Format relative time using positive day unit (1).
rtf.format(1, "day"); // "tomorrow"
When the value is 0, the output may be dependent on the unit. "0 seconds" is represented by the localized version of "now".
rtf.format(0, "second"); // "now" rtf.format(0, "day"); // "today" rtf.format(0, "minute"); // "this minute"
Specifications
| Specification |
|---|
| ECMAScript® 2026 Internationalization API Specification # sec-intl-relativetimeformat-constructor |
Browser compatibility
| Desktop | Mobile | Server | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | Deno | Node.js | |
RelativeTimeFormat |
71 | 79 | 65 | 58 | 14 | 71 | 65 | 50 | 14 | 10.0 | 71 | 1.8 | 12.0.0 |
locales_parameter |
71 | 79 | 65 | 58 | 14 | 71 | 65 | 50 | 14 | 10.0 | 71 | 1.8 | 13.0.012.0.0–13.0.0Before version 13.0.0, only the locale data foren-US is available by default. When other locales are specified, the RelativeTimeFormat instance silently falls back to en-US. To make full ICU (locale) data available before version 13, see Node.js documentation on the --with-intl option and how to provide the data. |
See also
Intl.RelativeTimeFormatIntl-
Intl.RelativeTimeFormaton v8.dev (2018)
© 2005–2024 MDN 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/Intl/RelativeTimeFormat/RelativeTimeFormat