Test name | Executions per second |
---|---|
[].forEach.call | 3282093.8 Ops/sec |
for...of | 3134956.8 Ops/sec |
<p id="p">hello</p>
'use strict';
let p = document.getElementById('p')
for(let i = 1000; i--;) p.appendChild(document.createElement('p'))
function myFunc(node) {
node.remove()
}
[].forEach.call(p.getElementsByTagName('*'), myFunc)
for(let node of p.getElementsByTagName('*'))node.remove()