document.documentElement.lastChild => Body
document.getElementsByTagName("h1")[0]
document.getElementById("tiger").firstChild
parentNode
childNodes
firstChild
lastChild
getElementsByTagName
getElementById
getAttributeNode
<html>
<head>
<title>Who Am I exercise</title>
</head>
<body>
<h1> I am a cow </h1>
<div id = "ranch">
I am <em> horse</em>, but I wish I was a <span id = "tiger">tiger</span>.
</div>
<form>
<input type= "button" value = "What Am I?" onClick="guess();" />
</form>
</body>
</html>
var element = document.documentElement.lastChild;
element.nodeName => "BODY"
element.nodeValue => "null"
document.getElementById("tiger").lastChild;