I was wondering what exactly a node is in JavaScript?
As in the functions:
element.nodeType row.parentNode.removeChild(row);
A node (of DOM) is an element, from your HTML page, rendered by the browser to said “node tree” and on screen. It is to be accessible and manipulated by web-client programs, like JavaScript.