강의

멘토링

로드맵

Inflearn Community Q&A

boo's profile image
boo

asked

Learn pure javascript and VueJS development through hands-on UI development

Search Form Implementation 4 (Implementation)

this.resetEl.addEventListener("click", e => this.reset()) 에서 event 를 넘겨 주는 이유가 있나요??

Written on

·

270

1

event 인자 값은 사용 안하는데 아래와 같이 해줘야 하는게 아닌가요?

아니면 다른 이유가 있나요?

this.resetEl.addEventListener("click", ()=> this.reset());

vuejsjavascript

Answer 1

0

jeonghwan님의 프로필 이미지
jeonghwan
Instructor

네 맞습니다. 사용하지 않으니깐 전달인자로 받지 않아도 되겠네요

boo's profile image
boo

asked

Ask a question