Skip to content

Instantly share code, notes, and snippets.

@p0rsche
Created March 24, 2018 03:17
Show Gist options
  • Save p0rsche/19955fd11470694a2a11da7b8e3c5246 to your computer and use it in GitHub Desktop.
Save p0rsche/19955fd11470694a2a11da7b8e3c5246 to your computer and use it in GitHub Desktop.
Get time in format "mm:hh am|pm"
const timeLocale = 'en-GB'
const timeZone = 'UTC'
const time = (new Date()).toLocaleString(timeLocale, { timeZone: timeZone, hour: 'numeric', minute: 'numeric', hour12: true })
// 10:10 am
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment