Test name | Executions per second |
---|---|
createTextNode | 2837661.5 Ops/sec |
textContent | 4143263.8 Ops/sec |
innerText | 2434765.2 Ops/sec |
append | 4884658.0 Ops/sec |
new text | 3667691.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'));