HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
💌
JJong’s Archive
/
🐻
고민곰인
/
eventListenr로 화살표 함수를 바로 넣으면 안되는 이유

eventListenr로 화살표 함수를 바로 넣으면 안되는 이유

Tags
JS
생성 일시
Oct 25, 2023 04:46 AM
Status
const routing = () ⇒ {} 일 때,
// X ~.addEventListener(’click’, routing) // O ~.addEventListener(’click’, () ⇒ routing)