What method would you use to find the first child element of an element with id "myDiv"?
<div id="myDiv">
<span>One</span>
<span>Two</span>
</div>
let firstChild = document.getElementById("myDiv").?;
What method would you use to find the first child element of an element with id "myDiv"?
<div id="myDiv">
<span>One</span>
<span>Two</span>
</div>
let firstChild = document.getElementById("myDiv").?;