javascript how to clear a list code example
Example 1: js clear a created list
function removeAll(){
document.getElementById("checkList").innerHTML = "";
}
Example 2: how to clear array in javascript
A.length = 0
function removeAll(){
document.getElementById("checkList").innerHTML = "";
}
A.length = 0