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 →