Skip to content

Instantly share code, notes, and snippets.

@jawinn
Last active April 21, 2016 04:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jawinn/8cbe0502b61e37c74ec18836fc9ae8bd to your computer and use it in GitHub Desktop.
Save jawinn/8cbe0502b61e37c74ec18836fc9ae8bd to your computer and use it in GitHub Desktop.
Array of Countries that Use the Euro (ISO Alpha-2 Country Codes)
// ===============================================================
// Array of countries using the Euro (ISO Alpha-2 country codes).
// *As of Jan, 2016.
// ===============================================================
var euro_users = {
// -- EU countries using the euro
'AT' : { name: 'Austria' },
'BE' : { name: 'Belgium' },
'CY' : { name: 'Cyprus' },
'EE' : { name: 'Estonia' },
'FI' : { name: 'Finland' },
'FR' : { name: 'France' },
'DE' : { name: 'Germany' },
'GR' : { name: 'Greece' },
'IE' : { name: 'Ireland' },
'IT' : { name: 'Italy' },
'LV' : { name: 'Latvia' },
'LT' : { name: 'Lithuania' },
'LU' : { name: 'Luxembourg' },
'MT' : { name: 'Malta' },
'NL' : { name: 'Netherlands' },
'PT' : { name: 'Portugal' },
'ES' : { name: 'Spain' },
'SI' : { name: 'Slovenia' },
'SK' : { name: 'Slovakia' },
// -- Non-EU countries using the euro
'XK' : { name: 'Kosovo' },
'ME' : { name: 'Montenegro' },
// -- Microstates using the euro
'AD' : { name: 'Andorra' },
'MC' : { name: 'Monaco' },
'SM' : { name: 'San Marino' },
'VA' : { name: 'Vatican City' }
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment