Created
February 9, 2019 15:28
-
-
Save mikaelvesavuori/1360e4b52ee1ee54b84863949aad05fd to your computer and use it in GitHub Desktop.
A list of all the European countries, for your huge-ass <select> dropdowns or what-not
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
const countriesEurope = [ | |
"Åland Islands", | |
"Albania", | |
"Andorra", | |
"Armenia", | |
"Austria", | |
"Azerbaijan", | |
"Belarus", | |
"Belgium", | |
"Bosnia and Herzegovina", | |
"Bulgaria", | |
"Denmark", | |
"Estonia", | |
"England", | |
"Finland", | |
"France", | |
"Iceland", | |
"Georgia", | |
"Croatia", | |
"Germany", | |
"Greece", | |
"Hungary", | |
"Ireland", | |
"Italy", | |
"Kazakhstan", | |
"Latvia", | |
"Liechtenstein", | |
"Lithuania", | |
"Luxembourg", | |
"Macedonia, the former Yugoslav Republic of", | |
"Malta", | |
"Moldova, Republic of", | |
"Monaco", | |
"Montenegro", | |
"Norway", | |
"Netherlands", | |
"Poland", | |
"Portugal", | |
"Romania", | |
"Russia", | |
"San Marino", | |
"Scotland", | |
"Serbia", | |
"Slovakia", | |
"Slovenia", | |
"Spain", | |
"Switzerland", | |
"Turkey", | |
"Ukraine", | |
//"GBR", | |
"Holy See (Vatican City State)", | |
"Wales" | |
]; | |
export default countriesEurope; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment