Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36
Chrome 91
Mac OS X 10.15.7
Desktop
3 years ago
Test name Executions per second
Vanilla JS .innerText 346872.5 Ops/sec
Vanilla JS .innerHTML 154831.6 Ops/sec
Vanilla JS .textContent 2665570.0 Ops/sec
Vanilla JS (QuerySelector) .innerText 235374.3 Ops/sec
Vanilla JS (QuerySelector) .innerHTML 133530.6 Ops/sec
Vanilla JS (QuerySelector) .textContent 1633086.1 Ops/sec
Vanilla JS (QuerySelectorAll) .innerText 871152.1 Ops/sec
Vanilla JS (QuerySelectorAll) .innerHTML 941508.7 Ops/sec
Vanilla JS (QuerySelectorAll) .textContent 939327.6 Ops/sec
Cash .text 1546977.0 Ops/sec
Cash .html 134296.5 Ops/sec
jQuery .text() 186376.5 Ops/sec
jQuery .html() 121271.4 Ops/sec
jQuery .find() .text() 137137.1 Ops/sec
jQuery .find() .html() 104427.5 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");