Test name | Executions per second |
---|---|
createTextNode | 377173.5 Ops/sec |
textContent | 1962731.5 Ops/sec |
innerText | 503244.4 Ops/sec |
append | 737932.4 Ops/sec |
new text | 394055.0 Ops/sec |
var a = document.createElement('a');
a.appendChild(document.createTextNode('text'));
a.textContent = 'text';
a.innerText = 'text';
a.append('text');
a.appendChild(new Text('text'));