Exploring the distinction between child nodes and child elements within JavaScript DOM:
For instance,
var myTbodyElement = myTableElement.firstChild;
versus
var mySecondTrElement = myTbodyElement.childNodes[1];
Is it possible to interchangeably use first child and child node?