Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>The Element Object</h1>
<h2>The lastElementChild Property</h2>
<ul id="myList">
  <li>Coffee</li>
  <li>Tea</li>
</ul>
<p>The HTML content of "myLIST"s last child element is:</p>
<p id="demo"></p>
<script>
const element = document.getElementById("myList")
document.getElementById("demo").innerHTML = element.lastElementChild.innerHTML;
</script>
</body>
</html>