Test name | Executions per second |
---|---|
createTextNode | 491930.8 Ops/sec |
textContent | 2144617.2 Ops/sec |
innerText | 694065.9 Ops/sec |
append | 976324.6 Ops/sec |
new text | 418505.3 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'));