It seems that JavaScript\'s Date() function can only return local date and time. Is there anyway to get time for a specific time zone, e.g., GMT-9?
Combining @Esail
var today = new Date(); var offset = -(today.getTimezoneOffset()/60);