Skip to content

Instantly share code, notes, and snippets.

@hyeonseok
Last active September 23, 2018 01:27
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 hyeonseok/5b31816009d29e635d99 to your computer and use it in GitHub Desktop.
Save hyeonseok/5b31816009d29e635d99 to your computer and use it in GitHub Desktop.
Now in "Ymd His" format.
const now = new Date();
const YMD = `${now.getFullYear()}-${`0${now.getMonth() + 1}`.slice(-2)}-${`0${now.getDate()}`.slice(-2)}`;
const His = `${now.getHours()}:${now.getMinutes()}:${now.getSeconds()}`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment