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 October 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)
Параметры
Возвращаемое значение
Массив, содержащий канонические коды языков
Примеры
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 |