<h1> My Title </h1> <p> Hello <em>world</em> <strong>!</strong> </p><div class="links"> <a href="https://google.com">A <strong>link</strong> </a> </div> <p></p>
const element = document.querySelector("h1"); console.log(element.textContent);
> My Title