Skip to content

Instantly share code, notes, and snippets.

@johnmurch
Created November 3, 2019 03:03
Show Gist options
  • Save johnmurch/c82136c52c3f89e5e086315510392775 to your computer and use it in GitHub Desktop.
Save johnmurch/c82136c52c3f89e5e086315510392775 to your computer and use it in GitHub Desktop.
Convert EPOCH to Date
var utcSeconds = 1234567890;
var d = new Date(0); // The 0 there is the key, which sets the date to the epoch
d.setUTCSeconds(utcSeconds);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment