В консоли вроде все правильно, но результат не принимает. Подскажите пожалуйста.
Localization
Fix the function getLocale.
It should return userConfig.locale if it's found in knownLocales.
Otherwise, it should return the string en.
мой код:
export const getLocale = (userConfig, knownLocales) => {
knownLocales.forEach((loc, idx) => {
(loc === userConfig.locale) ? userConfig.locale: 'en'
})
}