Мне нужно значение для ключа country_code и language_code.Как получить значения ключей в этом объекте javascript внутри массивов?
Я попытался
sourceLanguageArray[0].$.country_code;
sourceLanguageArray[0].$.language_code;
Я получаю ошибку:
console.log(sourceLanguageArray[0].$.country_code);
^
ReferenceError: sourceLanguageArray is not defined
Это как код и консольных журналы структуры данных выглядит следующим образом:
source_language (includes country_code and language_code)
const sourceLanguageArray = _.map(ontomlClass, 'source_language');
console.log(sourceLanguageArray);
// => [ [ { '$': [Object] } ], [ { '$': [Object] } ],[ { '$': [Object] } ] ]
// => [ { '$': [Object] } ]
console.log(sourceLanguageArray[0]);
// => [ { '$': { country_code: 'US', language_code: 'en' } } ]
Спасибо! Это решило! –