Test name | Executions per second |
---|---|
createTextNode | 2043249.5 Ops/sec |
textContent | 3057819.2 Ops/sec |
innerText | 1865215.4 Ops/sec |
append | 3678611.5 Ops/sec |
new text | 2233701.8 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'));