Created
December 30, 2023 20:41
-
-
Save erdum/b51fdc2c6cee79e1b9adda5935f7defa to your computer and use it in GitHub Desktop.
USA States names list in javascript array
This file contains 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
const UsaStates = [ | |
'Alabama', | |
'Alaska', | |
'Arizona', | |
'Arkansas', | |
'California', | |
'Colorado', | |
'Connecticut', | |
'Delaware', | |
'Florida', | |
'Georgia', | |
'Hawaii', | |
'Idaho', | |
'Illinois', | |
'Indiana', | |
'Iowa', | |
'Kansas', | |
'Kentucky', | |
'Louisiana', | |
'Maine', | |
'Maryland', | |
'Massachusetts', | |
'Michigan', | |
'Minnesota', | |
'Mississippi', | |
'Missouri', | |
'Montana', | |
'Nebraska', | |
'Nevada', | |
'New Hampshire', | |
'New Jersey', | |
'New Mexico', | |
'New York', | |
'North Carolina', | |
'North Dakota', | |
'Ohio', | |
'Oklahoma', | |
'Oregon', | |
'Pennsylvania', | |
'Rhode Island', | |
'South Carolina', | |
'South Dakota', | |
'Tennessee', | |
'Texas', | |
'Utah', | |
'Vermont', | |
'Virginia', | |
'Washington', | |
'West Virginia', | |
'Wisconsin', | |
'Wyoming', | |
'District of Columbia', | |
'American Samoa', | |
'Guam', | |
'Northern Mariana Islands', | |
'Puerto Rico', | |
'United States Minor Outlying Islands', | |
'Virgin Islands, U.S.' | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment