📚 Reference


🔖 Index


모든 자식 Element 삭제


let cell = document.getElementById("cell");

while(cell.hasChildNodes()){

	cell.removeChild(cell.firstChild);

}