Skip to content

Instantly share code, notes, and snippets.

@jakub-g
Created April 17, 2020 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakub-g/1a34e14b476660ac162490725b40300a to your computer and use it in GitHub Desktop.
Save jakub-g/1a34e14b476660ac162490725b40300a to your computer and use it in GitHub Desktop.
Intl.DateTimeFormat
new Intl.DateTimeFormat('en-GB', {timeZone: 'Europe/Paris',
year: 'numeric',
month: 'long',
day: 'numeric',
hour: 'numeric',
minute: 'numeric'
}).format(new Date())
// "17 April 2020, 17:03"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment