Intl.Locale.prototype.weekInfo

La propriété Intl.Locale.prototype.weekInfo est un accesseur qui renvoie un objet weekInfo contenant les propriétés firstDay, weekend et minimalDays pour la locale associée.

Description

Renvoie les informations associées à l'instance Locale pour les informations sur la semaine selon les éléments de semaine UTS 35.

Exemples

Obtenir les informations sur la semaine

let he = new Intl.Locale("he");
console.log(he.weekInfo); // affiche {firstDay: 7, weekend: [5, 6], minimalDays: 1}

let af = new Intl.Locale("af");
console.log(af.weekInfo); // affiche  {firstDay: 7, weekend: [6, 7], minimalDays: 1}

let enGB = new Intl.Locale("en-GB");
console.log(enGB.weekInfo) // affiche  {firstDay: 1, weekend: [6, 7], minimalDays: 4}

let msBN = new Intl.Locale("en-GB");
console.log(msBN.weekInfo) // affiche {firstDay: 7, weekend: [5, 7], minimalDays: 1}
// Le week-end à Brunei est sur vendredi et dimanche mais pas sur samedi

Spécifications

No specification found

No specification data found for javascript.builtins.Intl.Locale.weekInfo.
Check for problems with this page or contribute a missing spec_url to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.

Compatibilité des navigateurs

BCD tables only load in the browser

Voir aussi