firstChild vs firstElementChild

The first child node and the first child element can be different. A node is an element node if it's nodeType is 1 (Node.ELEMENT_NODE). Text nodes and comment nodes are not element nodes. If you need the first child node of an element, use the firstChild property. firstElementChild property JavaScript