DroidScript

JavaScript Reference

dateObj.getTimezoneOffset()

The getTimezoneOffset() method returns the time-zone offset from UTC, in minutes, for the current locale.

Syntax

dateObj.getTimezoneOffset()

Parameters

None.

Return value

The time-zone offset is the difference, in minutes, between UTC and local time. Note that this means that the offset is positive if the local timezone is behind UTC and negative if it is ahead. For example, if your time zone is UTC+10 (Australian Eastern Standard Time), -600 will be returned. Daylight saving time prevents this value from being a constant even for a given locale.

Examples

Using getTimezoneOffset()

var x = new Date();
var currentTimeZoneOffsetInHours = x.getTimezoneOffset() / 60;

 Created by Mozilla Contributors and licensed under CC-BY-SA 2.5