Skip to content

filter된 학생 리스트가 표시되지 않습니다. #622

Answered by woohm402
kmsgm asked this question in Q&A
Discussion options

You must be logged in to vote

filterListmap 함수에서 화살표 함수 사용하실 때 실수하신 것 같습니다. (참고할 만한 글)

[1, 2, 3].map(item => ( <h1>{item}</h1> )) // [<h1>1</h1>, <h1>2</h1>, <h1>3</h1>]

[1, 2, 3].map(item => { <h1>{item}</h1> }) // [undefined, undefined, undefined]

여담이지만 그 실수를 하면 IDE별로 아래처럼 뜨는데

webstorm vscode

경고 보여줌

경고 없음

좋은 IDE를 사용하면 삽질하는 시간이 반으로 줄어듭니다 :) 웹스톰 최고

vscode는 기본적으로 메모장같은 친구라 익스텐션 충분히 설치하셔야 자바스크립트 IDE로 좀 쓸만하실 거예요

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@kmsgm
Comment options

kmsgm Nov 3, 2021
Collaborator Author

Answer selected by woohm402
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants