Run details:
Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko
IE 11
Windows 7
Desktop
5 years ago
Test name Executions per second
createTextNode 4155.7 Ops/sec
textContent 194712.4 Ops/sec
innerText 133014.5 Ops/sec
innerHTML 194655.1 Ops/sec
Script Preparation code:
AخA
 
var a = document.createElement('a');
Tests:
  • createTextNode

     
    a.appendChild(document.createTextNode('text'));
  • textContent

     
    a.textContent = 'text';
  • innerText

     
    a.innerText = 'text';
  • innerHTML

     
    a.innerHTML = 'text';