Test name | Executions per second |
---|---|
createTextNode | 612404.5 Ops/sec |
textContent | 1341396.6 Ops/sec |
innerText | 539766.9 Ops/sec |
append | 1099903.1 Ops/sec |
new text | 546778.7 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'));