remove all child from parent javascript code example

Example 1: delete all childs in node

while (myNode.firstChild) {
  myNode.removeChild(myNode.lastChild);
}

Example 2: Javascript remove all child elements

var myDiv = document.getElementById("myDivID");
    myDiv.innerHTML = "";//remove all child elements inside of myDiv

Example 3: js remove all child elements from html

document.getElementById("myId").innerHTML = '';

Example 4: how to remove all child elements in javascript

document.getElementById("myDivID").innerHTML = "";