0 / 60 seg.

How would you select all <p> elements on an HTML page that are inside a <div> with ID "myDiv"?

<div id="myDiv">
  <p>Text 1</p>
  <p>Text 2</p>
</div>
const elements = _____;