This feature is not Baseline because it does not work in some of the most widely-used browsers.
The getCalendars() method of Intl.Locale instances returns a list of one or more unique calendar identifiers for this locale.
Note: In some versions of some browsers, this method was implemented as an accessor property called calendars. However, because it returns a new array on each access, it is now implemented as a method to prevent the situation of locale.calendars === locale.calendars returning false. Check the browser compatibility table for details.
getCalendars()
None.
An array of strings representing all calendars commonly used for the Locale, sorted in descending preference. If the Locale already has a calendar, then the returned array contains that single value.
For a list of supported calendar types, see Intl.supportedValuesOf().
If the Locale object doesn't have a calendar already, getCalendars() lists all commonly-used calendars for the given Locale. For examples of explicitly setting a calendar, see calendar examples.
const arEG = new Intl.Locale("ar-EG");
console.log(arEG.getCalendars()); // ["gregory", "coptic", "islamic", "islamic-civil", "islamic-tbla"]
const jaJP = new Intl.Locale("ja-JP");
console.log(jaJP.getCalendars()); // ["gregory", "japanese"]
| Desktop | Mobile | Server | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | Bun | Deno | Node.js | |
getCalendars |
13099Implemented as an accessor property. |
13099Implemented as an accessor property. |
No |
11585Implemented as an accessor property. |
1715.4–previewImplemented as an accessor property. |
13099Implemented as an accessor property. |
No |
8668Implemented as an accessor property. |
1715.4Implemented as an accessor property. |
28.018.0Implemented as an accessor property. |
13099Implemented as an accessor property. |
1715.4Implemented as an accessor property. |
1.0.0 | 1.19 |
24.0.018.0.0Implemented as an accessor property. |
Intl.LocaleIntl.Locale.prototype.calendar
© 2005–2025 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/Locale/getCalendars