Date.getTimezoneOffset()
Returns the time difference between UTC time and local time, in minutes
The getTimezoneOffset() method returns the time zone difference, in minutes, from current locale (host system settings) to UTC.
Syntax
Return value
A number representing the time-zone offset, in minutes, from the date based on current host system settings to UTC.
Description
The time-zone offset is the difference, in minutes, from local time to UTC. Note that this means that the offset is positive if the local timezone is behind UTC and negative if it is ahead. For example, for time zone UTC+10:00 (Australian Eastern Standard Time, Vladivostok Time, Chamorro Standard Time), -600 will be returned.
Current Locale
UTC-8
UTC
UTC+3
Return Value
480
0
-180
The time zone offset returned is the one that applies for the Date that it's called on. Where the host system is configured for daylight saving, the offset will change depending on the date and time that the Date represents and that daylight saving applies.
Examples
Using getTimezoneOffset()
getTimezoneOffset()
References
Contributors to this page
Uros Durdevic
Last updated