Skip to content

Instantly share code, notes, and snippets.

@arifulhb
Created March 4, 2015 07:38
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 arifulhb/e47016a1cbbd1be7de04 to your computer and use it in GitHub Desktop.
Save arifulhb/e47016a1cbbd1be7de04 to your computer and use it in GitHub Desktop.
unix timestamp to javascript date
var ep = '1424901599';
var date = new Date(ep*1000);
var iso = date.toLocaleString();
alert(iso)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment