Test name | Executions per second |
---|---|
createTextNode | 1480548.5 Ops/sec |
textContent | 2494001.0 Ops/sec |
innerText | 1618634.8 Ops/sec |
append | 2767359.0 Ops/sec |
new text | 1596840.1 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'));