<html>
<body>
<p>Example list:</p>
<ul id="myList"><li>Coffee</li><li>Tea</li></ul>
<p id="demo">Click the button get the node name of the list's last child node</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction()
{
var l=document.getElementById("myList");
var x=document.getElementById("demo");
x.innerHTML=l.lastChild.nodeName;
}
</script>
<p><strong>Note:</strong> Whitespace inside elements is considered as text, and text
is considered as nodes.</p>
<p>Try adding whitespace before the closing UL tag, and the result will be node name=#text.</p>
</body>
</html>