Appending in JavaScript
Create text node on documentDocument.createTextNode(text);
Append node on NodeNode.appendChild(node);
Remove node on NodeNode.removeChild(node);
Collection of child nodes on NodeNode.childNodes;
Length of child nodes collectionNode.childNodes...
weensy.hashnode.dev1 min read