Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36
Chrome 89
Mac OS X 11.2.1
Desktop
4 years ago
Test name Executions per second
createTextNode 1050818.0 Ops/sec
textContent 5414745.5 Ops/sec
innerText 1238762.4 Ops/sec
innerHTML 309667.0 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';