Skip to content

Instantly share code, notes, and snippets.

@xiaohutai
Created November 27, 2018 08:46
Show Gist options
  • Save xiaohutai/7982d1199fcff5f526bd81ffbc4d73c3 to your computer and use it in GitHub Desktop.
Save xiaohutai/7982d1199fcff5f526bd81ffbc4d73c3 to your computer and use it in GitHub Desktop.
const dateFormatOptions = {
year: 'numeric',
month: 'numeric',
day: 'numeric',
hour: 'numeric',
minute: 'numeric',
second: 'numeric',
};
const dateFormatter = new Intl.DateTimeFormat(document.documentElement.lang, dateFormatOptions);
console.log(dateFormatter.format(new Date()))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment