Test name | Executions per second |
---|---|
createTextNode | 1374750.4 Ops/sec |
textContent | 1997001.4 Ops/sec |
innerText | 1185901.6 Ops/sec |
append | 2284656.0 Ops/sec |
new text | 1733862.0 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'));