Skip to content

Instantly share code, notes, and snippets.

@cmcdevitt
Created May 12, 2014 14:10
Show Gist options
  • Save cmcdevitt/10d5f75d0913a27082c8 to your computer and use it in GitHub Desktop.
Save cmcdevitt/10d5f75d0913a27082c8 to your computer and use it in GitHub Desktop.
Unix Epoch to Date
var newDate = new Date( );
var unix = 1399665294;
newDate.setTime(unix*1000); // JavaScript is in milliseconds and unix is in seconds
dateString = newDate.toUTCString();
gs.log("Epoch: " + dateString);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment