This file contains hidden or 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
// Shape - superclass | |
function Shape() { | |
this.x = 0; | |
this.y = 0; | |
} | |
// superclass method | |
Shape.prototype.move = function(x, y) { | |
this.x += x; | |
this.y += y; |
This file contains hidden or 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
array ( | |
'(GMT-12:00) International Date Line West' => 'Pacific/Wake', | |
'(GMT-11:00) Midway Island' => 'Pacific/Apia', | |
'(GMT-11:00) Samoa' => 'Pacific/Apia', | |
'(GMT-10:00) Hawaii' => 'Pacific/Honolulu', | |
'(GMT-09:00) Alaska' => 'America/Anchorage', | |
'(GMT-08:00) Pacific Time (US & Canada); Tijuana' => 'America/Los_Angeles', | |
'(GMT-07:00) Arizona' => 'America/Phoenix', | |
'(GMT-07:00) Chihuahua' => 'America/Chihuahua', | |
'(GMT-07:00) La Paz' => 'America/Chihuahua', |
This file contains hidden or 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
array ( | |
'(GMT-11:00) Midway Island' => 'Pacific/Midway', | |
'(GMT-11:00) Samoa' => 'Pacific/Samoa', | |
'(GMT-10:00) Hawaii' => 'Pacific/Honolulu', | |
'(GMT-09:00) Alaska' => 'US/Alaska', | |
'(GMT-08:00) Pacific Time (US & Canada)' => 'America/Los_Angeles', | |
'(GMT-08:00) Tijuana' => 'America/Tijuana', | |
'(GMT-07:00) Arizona' => 'US/Arizona', | |
'(GMT-07:00) Chihuahua' => 'America/Chihuahua', | |
'(GMT-07:00) La Paz' => 'America/Chihuahua', |
NewerOlder