Skip to content

Instantly share code, notes, and snippets.

@autr
Created April 30, 2021 16:23
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 autr/52fc24b2beb364814c6401b128d3ad58 to your computer and use it in GitHub Desktop.
Save autr/52fc24b2beb364814c6401b128d3ad58 to your computer and use it in GitHub Desktop.
UNIX Timestamps w/ JS
const timestamp = e => Math.floor(Date.now() / 1000)
const date = timestamp => new Date( timestamp * 1000 )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment