Dev.Ella Blog
/
All Posts
/
[랜덤 추첨기] 랜덤피커 배포 배움 기록
/
map undefined 에러 해결하기
Search
Share
map undefined 에러 해결하기
에러 문구
Uncaught TypeError: Cannot read properties of undefined (reading 'map')
해결 방법
&&을 이용한다.
JavaScript에서 true && expression은 항상 expression으로 실행되고 false && expression은 항상 false로 실행된다. 따라서 조건이 참이면 && 바로 뒤의 요소가 출력에 나타난다. 거짓이면 React는 무시하고 건너뛴다.
참고 자료
•
[리액트 오류] TypeError: Cannot read property 'map' of undefined