본문 바로가기
에러/react

[React] Cannot read property 'toString' of null 에러

by PEKAH 2020. 12. 15.

toString 변환 시 발생하는 에러


에러: Cannot read property 'toString' of null



해결

값이 null 인 경우 발생하는 에러로


var formNumber = "" + number; <-- String으로 강제 변환 후


formNumber.toString() ... 하면 된다.

댓글