Skip to content

Instantly share code, notes, and snippets.

@psiborg
Created January 6, 2012 08:24
Show Gist options
  • Select an option

  • Save psiborg/1569673 to your computer and use it in GitHub Desktop.

Select an option

Save psiborg/1569673 to your computer and use it in GitHub Desktop.
JS Date
var now = new Date();
now.toLocaleString(); // Tue Jun 14 2011 11:32:39 GMT-0400 (Eastern Daylight Time)
now.toGMTString(); // Tue, 14 Jun 2011 15:32:39 GMT (useful for setting browser cookies)
now.getTime(); // 1308065603585 (Unix epoch time in milliseconds since midnight of January 1, 1970)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment