ultimate_tictactoe/tools.js

13 lines
243 B
JavaScript
Raw Normal View History

2019-03-24 16:43:29 +01:00
function clear(node) {
while (node.hasChildNodes()) {
clear(node.firstChild);
}
node.parentNode.removeChild(node);
}
function clearInner(node) {
while (node.hasChildNodes()) {
clear(node.firstChild);
}
}