Test name | Executions per second |
---|---|
createTextNode | 3353871.5 Ops/sec |
textContent | 15077907.0 Ops/sec |
innerText | 4585675.5 Ops/sec |
append | 5848170.0 Ops/sec |
new text | 2831760.5 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'));