This content originally appeared on Bram.us and was authored by Bramus!
Phil Nash walks us through using Intl.DateTimeFormat
to format a Date
to a specific timezone and format.
const shortcutFormatter = Intl.DateTimeFormat("en-AU", {
timeZone: "Australia/Melbourne",
timeStyle: "long",
dateStyle: "short"
});
shortcutFormatter.format(date);
// => "22/2/21, 5:05:52 pm AEDT"
How to display dates in your user’s time zone with the Intl API →
This content originally appeared on Bram.us and was authored by Bramus!
Bramus! | Sciencx (2021-03-06T23:20:25+00:00) Formatting a Date in JavaScript with Intl.DateTimeFormat. Retrieved from https://www.scien.cx/2021/03/06/formatting-a-date-in-javascript-with-intl-datetimeformat/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.