티스토리 뷰
에러 노트
[React] Expected an assignment or function call and instead saw an expression.
2021bong 2022. 9. 25. 18:57열심히 map을 쓰고 있었는데 떴다.
Expected an assignment or function call and instead saw an expression.
예상하고 있던 할당 또는 함수 호출 대신 식이 발견되었습니다.
이유
map()을 쓰면서 return을 해주지 않았기 때문이다.
// Bad -> Error
array.map((num)=>{num*2})
// Good
array.map((num)=>{return num*2})
// or
array.map((num)=>num*2)
지난번에도 return을 안써줘서 에러가 떴던 것 같은데 또 까먹었다. 제발 return을 잊지말자...
map을 쓸 때 중괄호를 안쓰고 코드를 작성하는 방식으로 습관을 들여야하나 싶다. 🤔
728x90
'에러 노트' 카테고리의 다른 글
[카카오맵 API] TypeError: Cannot read properties of undefined (reading 'maps') (0) | 2022.09.25 |
---|---|
[Git] Will not add file alias already exists in index. (0) | 2022.09.25 |
[React] You provided a 'checked' prop to a form field without an 'onChange' handler. (0) | 2022.09.25 |
[JS] Illegal return statement (0) | 2022.08.02 |
[JS] Attempted to assign to readonly property. (0) | 2022.07.12 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- CSS
- React
- 비주얼스튜디오코드
- html
- Python
- javascript
- 구름에듀
- Typescript
- 저스트코드
- 제로초
- 리액트
- 회고
- 파이썬
- js
- 코딩앙마
- 드림코딩
- TS
- 김버그
- 자바스크립트
- map
- 깃
- git
- 스파르타코딩클럽
- 타입스크립트
- 코드잇
- Til
- vscode
- 제이쿼리
- scss
- vue
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함