0 / 60 seg.

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").?;