Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save yutakatsuchida/7e4eade72dbae8d2bde423bfd859195a to your computer and use it in GitHub Desktop.
Save yutakatsuchida/7e4eade72dbae8d2bde423bfd859195a to your computer and use it in GitHub Desktop.
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