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 September 2017.

Die statische Methode Intl.getCanonicalLocales() gibt ein Array zurück, das die kanonischen Locales-Namen enthält. Doppelte Einträge werden ausgelassen und die Elemente werden als strukturell gültige Sprach-Tags validiert.

Probieren Sie es aus

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
}

Syntax

js
Intl.getCanonicalLocales(locales)

Parameter

locales

Eine Liste von String-Werten, für die die kanonischen Locale-Namen ermittelt werden sollen.

Rückgabewert

Ein Array, das die kanonischen Locale-Namen enthält.

Beispiele

Verwendung von getCanonicalLocales

js
Intl.getCanonicalLocales("EN-US"); // ["en-US"]
Intl.getCanonicalLocales(["EN-US", "Fr"]); // ["en-US", "fr"]

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

Spezifikationen

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

Browser-Kompatibilität

Report problems with this compatibility data on GitHub
desktopmobileserver
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
Deno
Node.js
getCanonicalLocales

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support

Siehe auch