해결된 질문
작성
·
198
3
handleChangeInput 함수에서 handleReset 함수를 실행하는 것은 이해가 되는데요. 왜 return 구문을 쓰신건지 잘 모르겠습니다 ^^;;
handleChangeInput 함수 자체도 별도의 return을 해주는 것이 없는것 같아서요.
handleChangeInput(e) {
const searchKeyword = e.target.value;
if (searchKeyword.length <= 0) {
return this.handleReset(); // 이 부분 입니다!
}
this.setState({
searchKeyword
});
}
답변 1
5
위에 코드는 이렇게 두 줄로 나눠서 사용한것과 같아요.
this.handleReset();
return;
this.handeReset()을 호출한 뒤에 함수를 종료하겠다는 의미입니다. 함수 로직을 작성할 때 예외 케이스를 먼저 검사해서 곧장 함수를 종료하는데 많이 사용하는 스타일 중의 하나에요.