Run details:
Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:81.0) Gecko/20100101 Firefox/81.0
Firefox 81
Windows 7
Desktop
4 years ago
Test name Executions per second
createTextNode 814802.3 Ops/sec
textContent 1874070.9 Ops/sec
innerText 1106193.4 Ops/sec
innerHTML 1844856.9 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';