Test name | Executions per second |
---|---|
createTextNode | 1468448.5 Ops/sec |
textContent | 4942875.5 Ops/sec |
innerText | 2040848.0 Ops/sec |
append | 2563271.5 Ops/sec |
new text | 1347483.6 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'));