Test name | Executions per second |
---|---|
createTextNode | 1747603.6 Ops/sec |
textContent | 6730485.5 Ops/sec |
innerText | 2880550.5 Ops/sec |
append | 3877092.2 Ops/sec |
new text | 1677528.9 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'));