Достаточно простой вопрос. Я пытаюсь прочитать значение переменной «длина» внутри этого массива объектов (см. Изображение 1)
введите описание изображения здесь
МОЙ КОД
const mapStateToProps = (state, ownProps) => { const lecture = state.firestore.ordered.lectures; const length = lecture.length; return { length: length, } }
НАПИСЫВАЯ ЭТОТ ВОПРОС, Я НАШЕЛ РЕШЕНИЕ:
КОД РЕШЕНИЯ
const mapStateToProps = (state, ownProps) => { const length = state.firestore.ordered.lectures && state.firestore.ordered.lectures.length; return { length: length, } }