ECMAScript Internationalization API - Intl: Difference between revisions
From WikiMLT
m Стадий: 6 [Фаза:Утвърждаване, Статус:Утвърден]; Категория:JavaScript |
mNo edit summary |
||
| Line 13: | Line 13: | ||
== References == | == References == | ||
* MDN: ''' | * MDN: '''[https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl <code>Intl</code> ECMAScript Internationalization API]''' | ||
== Simple example == | == Simple example == | ||
Latest revision as of 21:27, 21 March 2023
The Intl object is the namespace for the ECMAScript Internationalization API, which provides language sensitive string comparison, number formatting, and date and time formatting. The Intl object provides access to several constructors as well as functionality common to the internationalization constructors and other language sensitive functions.
Video 1. Web Dev Simplified on YouTube: Formatting Is So Easy With The Intl JavaScript API.
References
Simple example
const formatter = new Intl.RelativeTimeFormat("bg-BG", { style: "long" });
formatter.format(-1, "minute");
'преди 1 минута'