The region
accessor property of Intl.Locale
instances returns the region of the world (usually a country) associated with this locale.
The region
accessor property of Intl.Locale
instances returns the region of the world (usually a country) associated with this locale.
The region is an essential part of the locale identifier, as it places the locale in a specific area of the world. Knowing the locale's region is vital to identifying differences between locales. For example, English is spoken in the United Kingdom and the United States of America, but there are differences in spelling and other language conventions between those two countries. Knowing the locale's region helps JavaScript programmers make sure that the content from their sites and applications is correctly displayed when viewed from different areas of the world.
The region is the third part of a valid Unicode language identifier string, and can be set by adding it to the locale identifier string that is passed into the Intl.Locale()
constructor. The region is a mandatory part of a
const locale = new Intl.Locale("en-Latn-US"); console.log(locale.region); // Prints "US"
The Intl.Locale()
constructor takes a configuration object, which can be used to set the region subtag and property.
const locale = new Intl.Locale("fr-Latn", { region: "FR" }); console.log(locale.region); // Prints "FR"
Desktop | Mobile | Server | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | Deno | Node.js | ||
region |
74 | 79 | 75 | 62 | 14 | 74 | 79 | 53 | 14 | 11.0 | 74 | 1.8 | 12.0.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/region