Last active
February 1, 2019 21:32
-
-
Save Cobertos/ae64d0d85cf086b9c478978efc175730 to your computer and use it in GitHub Desktop.
Iso US States and Outlying Areas in Javascript
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
'US-AL' : { | |
'name' : 'Alabama' | |
}, | |
'US-AK' : { | |
'name' : 'Alaska' | |
}, | |
'US-AZ' : { | |
'name' : 'Arizona' | |
}, | |
'US-AR' : { | |
'name' : 'Arkansas' | |
}, | |
'US-CA' : { | |
'name' : 'California' | |
}, | |
'US-CO' : { | |
'name' : 'Colorado' | |
}, | |
'US-CT' : { | |
'name' : 'Connecticut' | |
}, | |
'US-DE' : { | |
'name' : 'Delaware' | |
}, | |
'US-FL' : { | |
'name' : 'Florida' | |
}, | |
'US-GA' : { | |
'name' : 'Georgia' | |
}, | |
'US-HI' : { | |
'name' : 'Hawaii' | |
}, | |
'US-ID' : { | |
'name' : 'Idaho' | |
}, | |
'US-IL' : { | |
'name' : 'Illinois' | |
}, | |
'US-IN' : { | |
'name' : 'Indiana' | |
}, | |
'US-IA' : { | |
'name' : 'Iowa' | |
}, | |
'US-KS' : { | |
'name' : 'Kansas' | |
}, | |
'US-KY' : { | |
'name' : 'Kentucky' | |
}, | |
'US-LA' : { | |
'name' : 'Louisiana' | |
}, | |
'US-ME' : { | |
'name' : 'Maine' | |
}, | |
'US-MD' : { | |
'name' : 'Maryland' | |
}, | |
'US-MA' : { | |
'name' : 'Massachusetts' | |
}, | |
'US-MI' : { | |
'name' : 'Michigan' | |
}, | |
'US-MN' : { | |
'name' : 'Minnesota' | |
}, | |
'US-MS' : { | |
'name' : 'Mississippi' | |
}, | |
'US-MO' : { | |
'name' : 'Missouri' | |
}, | |
'US-MT' : { | |
'name' : 'Montana' | |
}, | |
'US-NE' : { | |
'name' : 'Nebraska' | |
}, | |
'US-NV' : { | |
'name' : 'Nevada' | |
}, | |
'US-NH' : { | |
'name' : 'New Hampshire' | |
}, | |
'US-NJ' : { | |
'name' : 'New Jersey' | |
}, | |
'US-NM' : { | |
'name' : 'New Mexico' | |
}, | |
'US-NY' : { | |
'name' : 'New York' | |
}, | |
'US-NC' : { | |
'name' : 'North Carolina' | |
}, | |
'US-ND' : { | |
'name' : 'North Dakota' | |
}, | |
'US-OH' : { | |
'name' : 'Ohio' | |
}, | |
'US-OK' : { | |
'name' : 'Oklahoma' | |
}, | |
'US-OR' : { | |
'name' : 'Oregon' | |
}, | |
'US-PA' : { | |
'name' : 'Pennsylvania' | |
}, | |
'US-RI' : { | |
'name' : 'Rhode Island' | |
}, | |
'US-SC' : { | |
'name' : 'South Carolina' | |
}, | |
'US-SD' : { | |
'name' : 'South Dakota' | |
}, | |
'US-TN' : { | |
'name' : 'Tennessee' | |
}, | |
'US-TX' : { | |
'name' : 'Texas' | |
}, | |
'US-UT' : { | |
'name' : 'Utah' | |
}, | |
'US-VT' : { | |
'name' : 'Vermont' | |
}, | |
'US-VA' : { | |
'name' : 'Virginia' | |
}, | |
'US-WA' : { | |
'name' : 'Washington' | |
}, | |
'US-WV' : { | |
'name' : 'West Virginia' | |
}, | |
'US-WI' : { | |
'name' : 'Wisconsin' | |
}, | |
'US-WY' : { | |
'name' : 'Wyoming' | |
}, | |
//Districts | |
'US-DC' : { | |
'name' : 'District of Columbia' | |
}, | |
//Outlying Areas | |
'US-AS' : { | |
'name' : 'American Samoa' | |
}, | |
'US-GU' : { | |
'name' : 'Guam' | |
}, | |
'US-MP' : { | |
'name' : 'Northern Mariana Islands' | |
}, | |
'US-PR' : { | |
'name' : 'Puerto Rico' | |
}, | |
'US-UM' : { | |
'name' : 'United States Minor Outlying Islands' | |
}, | |
'US-VI' : { | |
'name' : 'Virgin Islands, U.S.' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment