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 4487.8 Ops/sec
textContent 205897.1 Ops/sec
innerText 136852.2 Ops/sec
innerHTML 218928.8 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';