Test name | Executions per second |
---|---|
createTextNode | 1963407.1 Ops/sec |
textContent | 8348506.0 Ops/sec |
innerText | 2872174.8 Ops/sec |
append | 3431733.8 Ops/sec |
new text | 2043497.8 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'));