• Returns the localized name of a country given its locale and country code.

    Parameters

    • locale: string

      The locale to use for formatting the country name.

    • countryCode: string

      The ISO 3166-1 alpha-2 country code.

    Returns string

    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'