Test name | Executions per second |
---|---|
createTextNode | 1534801.6 Ops/sec |
textContent | 7000085.0 Ops/sec |
innerText | 2122899.8 Ops/sec |
append | 2848907.8 Ops/sec |
new text | 1592864.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'));