Skip to content

Instantly share code, notes, and snippets.

@minedun6
Created October 2, 2018 21:20
Show Gist options
  • Save minedun6/0d264fbc332e2416c8ff40f5f24dc1bb to your computer and use it in GitHub Desktop.
Save minedun6/0d264fbc332e2416c8ff40f5f24dc1bb to your computer and use it in GitHub Desktop.
Localized date
// list of timezone
// https://gist.github.com/rxaviers/8481876
let nhr = new Date().toLocaleTimeString('en', {
year: 'numeric',
month: '2-digit',
day: '2-digit',
hour: '2-digit',
minute: '2-digit',
hour12: false,
timeZone: 'Africa/Tunis'
});
alert(nhr);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment