Created
January 8, 2013 16:36
-
-
Save perforb/4485276 to your computer and use it in GitHub Desktop.
Variation of current Unix timestamp.
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
// using static methods | |
console.log(Date.now()); // 1357662789317 | |
// if you have Date objects | |
console.log(new Date().getTime()); // 1357662789317 | |
// numeric context | |
console.log(+new Date); // 1357662789317 | |
console.log(+new Date()); // 1357662789317 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment