Created
January 6, 2012 08:24
-
-
Save psiborg/1569673 to your computer and use it in GitHub Desktop.
JS Date
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
| 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