Test name | Executions per second |
---|---|
DOM | 260839.2 Ops/sec |
DomFragment | 4818.3 Ops/sec |
hybrid | 2662.1 Ops/sec |
const test = document.createElement('div')
test.innerHTML = '<div>foo bar</div>'
document.body.append(test.childNodes)
const test = document.createRange().createContextualFragment('<div>foo bar</div>')
document.body.append(test)
const test1 = document.createElement('div')
const test2 = document.createRange().createContextualFragment('<div>foo bar</div>')
test1.append(test2)
document.body.append(test1.childNodes)