🎯 What you'll learn: Events are how users interact with web pages. You'll master addEventListener, the event object, event delegation, keyboard and mouse events, custom events, form validation, and preventing default browser behavior.
1-B 2-B 3-B 4-A | 5 click 6 target 7 = btn.addEventListener('click', ()=>alert('Hi')) 8 = inp.addEventListener('input', e=>console.log(e.target.value)) 9 = To handle the form with JS instead of reloading the page | 10 = Event delegation on a parent, checking e.target