P3.9: Event Listeners & Actions
Events are actions that happen on the page (clicks, keyboard inputs, page scrolls).
Events are actions that happen on the page (clicks, keyboard inputs, page scrolls).
Lesson: p3-9-events
Events are actions that happen on the page (clicks, keyboard inputs, page scrolls).
const btn = document.querySelector("button");
btn.addEventListener("click", () => {
alert("Button clicked!");
});