Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.46 Safari/537.36
Chrome 76
Windows
Desktop
5 years ago
Test name Executions per second
createTextNode 248871.0 Ops/sec
textContent 5482936.5 Ops/sec
innerText 1023084.6 Ops/sec
innerHTML 126147.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';