Web/JavaScript/Reference/Global objects/Intl/DisplayNames/of

From Get docs


The of() method receives a code and returns a string based on the locale and options provided when instantiating Intl.DisplayNames.


The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.


Syntax

displayNames.of(code);

Parameters

code
The code to provide depends on the type:

Return value

A language-specific formatted string.

Examples

Using the of method

let regionNames = new Intl.DisplayNames(['en'], {type: 'region'});
regionNames.of('419'); // "Latin America"

let languageNames = new Intl.DisplayNames(['en'], {type: 'language'});
languageNames.of('fr'); // "French"

let currencyNames = new Intl.DisplayNames(['en'], {type: 'currency'});
currencyNames.of('EUR'); // "Euro"

Specifications

Specification
Intl.DisplayNamesThe definition of 'of()' in that specification.

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile Server
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet Node.js
of Chrome

Full support 81

Edge

Full support 81

Firefox

No support No

IE

No support No

Opera

Full support 68

Safari

No support No

WebView Android

Full support 81

Chrome Android

Full support 81

Firefox Android

No support No

Opera Android

Full support 58

Safari iOS

No support No

Samsung Internet Android

No support No

nodejs

Full support 14.0.0

Legend

Full support  
Full support
No support  
No support


See also