<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"><script>
<script>jQuery.noConflict();</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/cash/7.0.3/cash.min.js"></script>
<div id="foo">Hello World</div>
var el = document.getElementById("foo");
var text = el.innerText;
var el = document.getElementById("foo");
var text = el.innerHTML;
var el = document.getElementById("foo");
var text = el.textContent;
var el = document.querySelector("#foo");
var text = el.innerText;
var el = document.querySelector("#foo");
var text = el.innerHTML;
var el = document.querySelector("#foo");
var text = el.textContent;
var el = document.querySelectorAll("#foo");
var text = el.innerText;
var el = document.querySelectorAll("#foo");
var text = el.innerHTML;
var el = document.querySelectorAll("#foo");
var text = el.textContent;
var text = $("#foo").text();
var text = $("#foo").html();
var text = jQuery("#foo").text();
var text = jQuery("#foo").html();
var text = jQuery(document).find("#foo").text();
var text = jQuery(document).find("#foo").html();
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Vanilla JS .innerText | |
Vanilla JS .innerHTML | |
Vanilla JS .textContent | |
Vanilla JS (querySelector) .innerText | |
Vanilla JS (querySelector) .innerHTML | |
Vanilla JS (querySelector) .textContent | |
Vanilla JS (querySelectorAll) .innerText | |
Vanilla JS (querySelectorAll) .innerHTML | |
Vanilla JS (querySelectorAll) .textContent | |
Cash .text | |
Cash .html | |
jQuery .text() | |
jQuery .html() | |
jQuery .find() .text() | |
jQuery .find() .html() |
Test name | Executions per second |
---|---|
Vanilla JS .innerText | 2403249.0 Ops/sec |
Vanilla JS .innerHTML | 6052508.5 Ops/sec |
Vanilla JS .textContent | 6097351.0 Ops/sec |
Vanilla JS (querySelector) .innerText | 1848596.9 Ops/sec |
Vanilla JS (querySelector) .innerHTML | 3653835.0 Ops/sec |
Vanilla JS (querySelector) .textContent | 3671760.5 Ops/sec |
Vanilla JS (querySelectorAll) .innerText | 1146966.2 Ops/sec |
Vanilla JS (querySelectorAll) .innerHTML | 1295210.1 Ops/sec |
Vanilla JS (querySelectorAll) .textContent | 1370492.6 Ops/sec |
Cash .text | 5085199.5 Ops/sec |
Cash .html | 3310898.8 Ops/sec |
jQuery .text() | 2858574.5 Ops/sec |
jQuery .html() | 2742344.8 Ops/sec |
jQuery .find() .text() | 1189870.5 Ops/sec |
jQuery .find() .html() | 1190930.8 Ops/sec |
A massive CSV string!
To answer your question, I'll need to parse the CSV string and extract the relevant information.
It seems that you're asking about the performance of Vanilla JavaScript on different browsers and devices. Specifically, you want to know how many executions per second for each test case.
After parsing the CSV string, I found a few interesting results:
.html()
method:.text()
method:.innerHTML
property:It's worth noting that the performance of Vanilla JavaScript can vary depending on the browser, device, and test case.
If you'd like to ask a more specific question or need further analysis, feel free to ask!