Skip to content

Instantly share code, notes, and snippets.

@ryanmorr
Created May 30, 2024 06:57
Show Gist options
  • Save ryanmorr/9a89e87426d7a19574ffc025db45dce4 to your computer and use it in GitHub Desktop.
Save ryanmorr/9a89e87426d7a19574ffc025db45dce4 to your computer and use it in GitHub Desktop.
Format a date according to the user's language
// https://developer.mozilla.org/en-US/docs/Web/API/Navigator/languages
const date = new Date("2012-05-24");
const formattedDate = new Intl.DateTimeFormat(navigator.languages).format(date);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment