This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

Intl.getCanonicalLocales()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨октябрь 2017 г.⁩.

Метод Intl.getCanonicalLocales() возвращает массив, содержащий канонические коды языков. Повторяющиеся значения будут отброшены и элементы будут проверены на соответствие структуры языковых тегов.

Интерактивный пример

console.log(Intl.getCanonicalLocales("EN-US"));
// Expected output: Array ["en-US"]

console.log(Intl.getCanonicalLocales(["EN-US", "Fr"]));
// Expected output: Array ["en-US", "fr"]

try {
  Intl.getCanonicalLocales("EN_US");
} catch (err) {
  console.log(err.toString());
  // Expected output (Firefox/Safari): RangeError: invalid language tag: "EN_US"
  // Expected output (Chrome): RangeError: Incorrect locale information provided
}

Синтаксис

Intl.getCanonicalLocales(locales)

Параметры

locales

Список String значений, из которых нужно получить канонические коды языков.

Возвращаемое значение

Массив, содержащий канонические коды языков

Примеры

js
Intl.getCanonicalLocales("RU-RU"); // ["ru-RU"]
Intl.getCanonicalLocales(["RU-RU", "Fr"]); // ["ru-RU", "fr"]

Intl.getCanonicalLocales("RU_RU");
// RangeError:'EN_US' is not a structurally valid language tag

Спецификации

Specification
ECMAScript® 2026 Internationalization API Specification
# sec-intl.getcanonicallocales

Совместимость с браузерами

Смотрите также