Created
April 30, 2021 16:23
-
-
Save autr/52fc24b2beb364814c6401b128d3ad58 to your computer and use it in GitHub Desktop.
UNIX Timestamps w/ JS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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