Returns the localized name of a language given its locale and language code.
The locale to use for formatting the language name.
The ISO 639-1 language code.
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' Copy
console.log(getLanguageName('en', 'fr')); // 'French'console.log(getLanguageName('es', 'en')); // 'inglés'
Returns the localized name of a language given its locale and language code.