Test name | Executions per second |
---|---|
innerHTML | 12538710.0 Ops/sec |
replaceChildren | 5380451.0 Ops/sec |
remove | 36181492.0 Ops/sec |
removeChild | 39214284.0 Ops/sec |
<div id="parent"></div>
const node = document.getElementById('parent');
const child = document.createElement('div')
child.textContent = 'some text'
for(var i = 0; i < 5000; i++) node.appendChild(child);
const node = document.getElementById('parent');
node.innerHTML = '';
const node = document.getElementById('parent');
node.replaceChildren();
const node = document.getElementById('parent');
while(node.firstChild) node.firstChild.remove()
const node = document.getElementById('parent');
while(node.firstChild) node.removeChild(node.firstChild)