====== DOM Manipulation in JS ====== **Selecting Elements** let heading = document.querySelector("h1"); console.log(heading.textContent); **Event Listeners** document.querySelector("button").addEventListener("click", () => { alert("Button clicked!"); });