Skip to content

Instantly share code, notes, and snippets.

@pbearne
Created August 16, 2013 13:49
Show Gist options
  • Save pbearne/6250135 to your computer and use it in GitHub Desktop.
Save pbearne/6250135 to your computer and use it in GitHub Desktop.
Timezone array
var timezones = {
'-12': 'GMT -12',
'-11': 'GMT -11',
'-10': 'GMT -10',
'-9': 'GMT -9',
'-8': 'PST',
'-7': 'MST',
'-6': 'CST',
'-5': 'EST',
'-4': 'AST',
'-3.5': 'NST',
'-3': 'ART',
'-2': 'GMT -2',
'-1': 'GMT -1',
'0': 'GMT',
'1': 'CET',
'2': 'EET',
'3': 'EAT',
'3.5': 'IRST',
'4': 'GMT +4',
'4.5': 'AFT',
'5': 'GMT +5',
'5.5': 'IST',
'6': 'GMT +6',
'7': 'ICT',
'8': 'CST',
'9': 'JST',
'9.5': 'ACST',
'10': 'GMT +10',
'11': 'GMT +11',
'12': 'GMT +12'
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment