아래 정리가 잘 된 문서이다.참고하면 도움이 될듯하다.https://hhyemi.github.io/2021/06/09/arrow.html 일반함수와 화살표 함수를 사용시 이벤트리스너에서 차이가 확연히 날것이다.document.querySelector('selector').addEventLisetner("click", function(e) { console.log(this); // 일반함수에서 this는 셀렉터 자신을 반환한다.})결과 : 셀렉터의 html dom document.querySelector('selector').addEventLisetner("click",(e) => { console.log(this); // 화살표함수에서 this는 브라우저 window를 반환한다.})..