The Intl namespace object contains several constructors as well as functionality common to the internationalization constructors and other language sensitive functions. Collectively, they comprise the ECMAScript Internationalization API, which provides language sensitive string comparison, number formatting, date and time formatting, and more....Date("2012-05-24"); function log(locale) { console.log( `${new Intl.DateTimeFormat(locale)...format(count)}`, ); } log("en-US"); // 5/24/2012 26,254.39 log("de-DE");...