Test name | Executions per second |
---|---|
createTextNode | 652014.8 Ops/sec |
textContent | 1177320.0 Ops/sec |
innerText | 687323.9 Ops/sec |
append | 1255781.6 Ops/sec |
new text | 896564.6 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'));