Run details:
Mozilla/5.0 (Linux; Android 10; ZenFone Max Pro M1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Mobile Safari/537.36
Chrome Mobile 84
Android
Mobile
4 years ago
Test name Executions per second
Vanilla JS .innerText 102872.8 Ops/sec
Vanilla JS .innerHTML 50358.7 Ops/sec
Vanilla JS .textContent 886198.2 Ops/sec
Vanilla JS (QuerySelector) .innerText 87239.8 Ops/sec
Vanilla JS (QuerySelector) .innerHTML 44265.8 Ops/sec
Vanilla JS (QuerySelector) .textContent 567737.0 Ops/sec
Vanilla JS (QuerySelectorAll) .innerText 321026.9 Ops/sec
Vanilla JS (QuerySelectorAll) .innerHTML 348431.2 Ops/sec
Vanilla JS (QuerySelectorAll) .textContent 350389.4 Ops/sec
Cash .text 301325.2 Ops/sec
Cash .html 34624.3 Ops/sec
jQuery .text() 55458.9 Ops/sec
jQuery .html() 29462.7 Ops/sec
jQuery .find() .text() 43617.2 Ops/sec
jQuery .find() .html() 25830.7 Ops/sec
HTML Preparation code:
AخA
 
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"><script>
2
<script>jQuery.noConflict();</script>
3
<script src="https://cdnjs.cloudflare.com/ajax/libs/cash/7.0.3/cash.min.js"></script>
4
<div id="foo">Hello World</div>
Tests:
  • Vanilla JS .innerText

     
    var el = document.getElementById("foo");
    el.innerText = "New Hello World";
  • Vanilla JS .innerHTML

     
    var el = document.getElementById("foo");
    el.innerHTML = "New Hello World";
  • Vanilla JS .textContent

     
    var el = document.getElementById("foo");
    el.textContent = "New Hello World";
  • Vanilla JS (QuerySelector) .innerText

     
    var el = document.querySelector("#foo");
    el.innerText = "New Hello World";
  • Vanilla JS (QuerySelector) .innerHTML

     
    var el = document.querySelector("#foo");
    el.innerHTML = "New Hello World";
  • Vanilla JS (QuerySelector) .textContent

     
    var el = document.querySelector("#foo");
    el.textContent = "New Hello World";
  • Vanilla JS (QuerySelectorAll) .innerText

     
    var el = document.querySelectorAll("#foo");
    el.innerText = "New Hello World";
  • Vanilla JS (QuerySelectorAll) .innerHTML

     
    var el = document.querySelectorAll("#foo");
    el.innerHTML = "New Hello World";
  • Vanilla JS (QuerySelectorAll) .textContent

     
    var el = document.querySelectorAll("#foo");
    el.textContent = "New Hello World"
  • Cash .text

     
    $("#foo").text("New Hello World");
  • Cash .html

     
    $("#foo").html("New Hello World");
  • jQuery .text()

     
    jQuery("#foo").text("New Hello World");
  • jQuery .html()

     
    jQuery("#foo").html("New Hello World");
  • jQuery .find() .text()

     
    jQuery(document).find("#foo").text("New Hello World");
  • jQuery .find() .html()

     
    jQuery(document).find("#foo").html("New Hello World");