Created
November 6, 2011 13:06
-
-
Save kyanny/1342852 to your computer and use it in GitHub Desktop.
This file contains 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 d = new Date(); | |
// "Sun Nov 06 2011 22:05:41 GMT+0900 (JST)" | |
function calcTime(offset){ | |
var d = new Date(); | |
utc = d.getTime() + (d.getTimezoneOffset() * 60000); | |
var nd = new Date(utc + (3600000 * offset)); | |
return nd; | |
} | |
var bombay = calcTime(5.5); | |
// "Sun Nov 06 2011 18:34:39 GMT+0900 (JST)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment