Test name | Executions per second |
---|---|
createTextNode | 1679983.4 Ops/sec |
textContent | 8314163.5 Ops/sec |
innerText | 2397721.2 Ops/sec |
append | 3082650.8 Ops/sec |
new text | 1552582.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'));