[JS] (err) Uncaught TypeError: Cannot read properties of undefined (reading '3')
Uncaught TypeError: Cannot read properties of undefined (reading '3')
- 오류 발생
상수에 값을 다시 넣으려고 하면 ?
- 원인
- 정의되지 않은(undefined) 객체(object)의 속성(property) 값 또는 함수를 읽으려고 하거나 호출하려고 할 때 오류가 발생합니다.
- 조치
- 특정 객체의 값이 undefined 이거나 null 이 아닌지 확입합니다.
- 참고문서