Created
July 11, 2018 01:41
-
-
Save dsoverby1986/820b7d8c40d5b81ef02a5c565ef0906f 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 stateCapitals = [ | |
{ name: 'Montgomery', stateAbbrev: 'AL' }, | |
{ name: 'Juneau', stateAbbrev: 'AK' }, | |
{ name: 'Phoenix', stateAbbrev: 'AZ' }, | |
{ name: 'Little Rock', stateAbbrev: 'AR' }, | |
{ name: 'Sacramento', stateAbbrev: 'CA' }, | |
{ name: 'Denver', stateAbbrev: 'CO' }, | |
{ name: 'Hartford', stateAbbrev: 'CT' }, | |
{ name: 'Dover', stateAbbrev: 'DE' }, | |
{ name: 'Tallahassee', stateAbbrev: 'FL' }, | |
{ name: 'Atlanta', stateAbbrev: 'GA' }, | |
{ name: 'Honolulu', stateAbbrev: 'HI' }, | |
{ name: 'Boise', stateAbbrev: 'ID' }, | |
{ name: 'Springfield', stateAbbrev: 'IL' }, | |
{ name: 'Indianapolis', stateAbbrev: 'IN' }, | |
{ name: 'Des Moines', stateAbbrev: 'IA' }, | |
{ name: 'Topeka', stateAbbrev: 'KS' }, | |
{ name: 'Frankfort', stateAbbrev: 'KY' }, | |
{ name: 'Baton Rouge', stateAbbrev: 'LA' }, | |
{ name: 'Augusta', stateAbbrev: 'ME' }, | |
{ name: 'Annapolis', stateAbbrev: 'MD' }, | |
{ name: 'Boston', stateAbbrev: 'MA' }, | |
{ name: 'Lansing', stateAbbrev: 'MI' }, | |
{ name: 'Saint Paul', stateAbbrev: 'MN' }, | |
{ name: 'Jackson', stateAbbrev: 'MS' }, | |
{ name: 'Jefferson City', stateAbbrev: 'MO' }, | |
{ name: 'Helena', stateAbbrev: 'MT' }, | |
{ name: 'Lincoln', stateAbbrev: 'NE' }, | |
{ name: 'Carson City', stateAbbrev: 'NV' }, | |
{ name: 'Concord', stateAbbrev: 'NH' }, | |
{ name: 'Trenton', stateAbbrev: 'NJ' }, | |
{ name: 'Santa Fe', stateAbbrev: 'NM' }, | |
{ name: 'Albany', stateAbbrev: 'NY' }, | |
{ name: 'Raleigh', stateAbbrev: 'NC' }, | |
{ name: 'Bismarck', stateAbbrev: 'ND' }, | |
{ name: 'Columbus', stateAbbrev: 'OH' }, | |
{ name: 'Oklahoma City', stateAbbrev: 'OK' }, | |
{ name: 'Salem', stateAbbrev: 'OR' }, | |
{ name: 'Harrisburg', stateAbbrev: 'PA' }, | |
{ name: 'Providence', stateAbbrev: 'RI' }, | |
{ name: 'Columbia', stateAbbrev: 'SC' }, | |
{ name: 'Pierre', stateAbbrev: 'SD' }, | |
{ name: 'Nashville', stateAbbrev: 'TN' }, | |
{ name: 'Austin', stateAbbrev: 'TX' }, | |
{ name: 'Salt Lake City', stateAbbrev: 'UT' }, | |
{ name: 'Montpelier', stateAbbrev: 'VT' }, | |
{ name: 'Richmond', stateAbbrev: 'VA' }, | |
{ name: 'Olympia', stateAbbrev: 'WA' }, | |
{ name: 'Charleston', stateAbbrev: 'WV' }, | |
{ name: 'Madison', stateAbbrev: 'WI' }, | |
{ name: 'Cheyenne', stateAbbrev: 'WY' } | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment