How would you get the total number of <li> elements inside a <ul> element with ID myList?
<ul id="myList">
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
const number = _____
How would you get the total number of <li> elements inside a <ul> element with ID myList?
<ul id="myList">
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
const number = _____