Created
November 2, 2013 21:12
-
-
Save loic/7283577 to your computer and use it in GitHub Desktop.
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 localNow = new Date(); | |
localNow.setTime(localNow.getTime() + 1); | |
console.log(localNow); | |
// Sat Nov 02 2013 16:09:29 GMT-0500 (CDT) | |
var localNow = new Date(); | |
localNow.setTime(localNow.getTime() + 1000 * 60 * 60 * 13); | |
console.log(localNow); | |
// Sun Nov 03 2013 04:12:22 GMT-0600 (CST) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment