Last active
February 11, 2020 22:51
-
-
Save yutakatsuchida/7e4eade72dbae8d2bde423bfd859195a to your computer and use it in GitHub Desktop.
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
var provinces = [ | |
{ | |
'Name' : 'Ontario', | |
'Capital' : 'Toronto', | |
'Largest city' : 'Toronto' | |
}, | |
{ | |
'Name' : 'Quebec', | |
'Capital' : 'Quebec City', | |
'Largest city' : 'Montreal' | |
}, | |
{ | |
'Name' : 'British Columbia', | |
'Capital' : 'Victoria', | |
'Largest city' : 'Vancouver' | |
}, | |
{ | |
'Name' : 'Alberta', | |
'Capital' : 'Edmonton', | |
'Largest city' : 'Calgary' | |
}, | |
{ | |
'Name' : 'Manitoba', | |
'Capital' : 'Winnipeg', | |
'Largest city' : 'Winnipeg' | |
}, | |
{ | |
'Name' : 'Saskatchewan', | |
'Capital' : 'Regina', | |
'Largest city' : 'Saskatoon' | |
}, | |
{ | |
'Name' : 'Nova Scotia', | |
'Capital' : 'Halifax', | |
'Largest city' : 'Halifax' | |
}, | |
{ | |
'Name' : 'New Brunswick', | |
'Capital' : 'Fredericton', | |
'Largest city' : 'Moncton' | |
}, | |
{ | |
'Name' : 'Newfoundland and Labrador', | |
'Capital' : 'St. John\'s', | |
'Largest city' : 'St. John\'s' | |
}, | |
{ | |
'Name' : 'Prince Edward Island', | |
'Capital' : 'Charlottetown', | |
'Largest city' : 'Charlottetown' | |
}, | |
{ | |
'Name' : 'Northwest Territories', | |
'Capital' : 'Yellowknife', | |
'Largest city' : 'Yellowknife' | |
}, | |
{ | |
'Name' : 'Nunavut', | |
'Capital' : 'Iqaluit', | |
'Largest city' : 'Iqaluit' | |
}, | |
{ | |
'Name' : 'Yukon', | |
'Capital' : 'Whitehorse', | |
'Largest city' : 'Whitehorse' | |
} | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment