Returns the localized name of a country given its locale and country code.
The locale to use for formatting the country name.
The ISO 3166-1 alpha-2 country code.
The localized country name or the country code if the name is not found.
console.log(getCountryName('en', 'US')); // 'United States'console.log(getCountryName('fr', 'US')); // 'États-Unis' Copy
console.log(getCountryName('en', 'US')); // 'United States'console.log(getCountryName('fr', 'US')); // 'États-Unis'
Returns the localized name of a country given its locale and country code.