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

    Parameters

    • locale: string

      The locale to use for formatting the language name.

    • languageCode: string

      The ISO 639-1 language code.

    Returns string

    The localized language name or the language code if the name is not found.

    console.log(getLanguageName('en', 'fr')); // 'French'
    console.log(getLanguageName('es', 'en')); // 'inglés'