Intl.Locale.prototype.baseName
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.
La propriété Intl.Locale.prototype.baseName
renvoie un extrait de la chaîne de caractères représentant l'objet Locale
. Cet extrait contient les informations essentielles à propos de l'objet Locale
.
Description
Un objet Intl.Locale
représente une locale ainsi que des options qui lui sont associées. La propriété baseName
renvoie des informations essentielles quant à la locale sous la forme d'une chaîne de caractères. Cette chaîne est un extrait de la représentation textuelle complète de l'objet Locale
. Cet extrait contient notamment la langue, le script utilisé ainsi que la région (s'ils sont disponibles).
Si on utilise la grammaire Unicode, baseName
renvoie la sous-séquence language ["-" script] ["-" region] *("-" variant)
.
Exemples
Exemple simple
let myLoc = new Intl.Locale("fr-Latn-CA"); // Sets locale to Candanian French
console.log(myLoc.toString()); // Prints out "fr-Latn-CA-u-ca-gregory"
console.log(myLoc.baseName); // Prints out "fr-Latn-CA"
Exemple avec certaines options
// Sets language to Japanese, region to Japan,
// calendar to Gregorian, hour cycle to 24 hours
let japan = new Intl.Locale("ja-JP-u-ca-gregory-hc-24");
console.log(japan.toString()); // Prints out "ja-JP-u-ca-gregory-hc-h24"
console.log(japan.baseName); // Prints out "ja-JP"
Exemple avec options qui surchargent
// Input string indicates language as Dutch and region as Belgium,
// but options object overrides the region and sets it to the Netherlands
let dutch = new Intl.Locale("nl-Latn-BE", { region: "NL" });
console.log(dutch.baseName); // Prints out "nl-Latn-NL"
Spécifications
Specification |
---|
ECMAScript Internationalization API Specification # sec-Intl.Locale.prototype.baseName |
Compatibilité des navigateurs
BCD tables only load in the browser