<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");
el.innerText = "New Hello World";
var el = document.getElementById("foo");
el.innerHTML = "New Hello World";
var el = document.getElementById("foo");
el.textContent = "New Hello World";
var el = document.querySelector("#foo");
el.innerText = "New Hello World";
var el = document.querySelector("#foo");
el.innerHTML = "New Hello World";
var el = document.querySelector("#foo");
el.textContent = "New Hello World";
var el = document.querySelectorAll("#foo");
el.innerText = "New Hello World";
var el = document.querySelectorAll("#foo");
el.innerHTML = "New Hello World";
var el = document.querySelectorAll("#foo");
el.textContent = "New Hello World"
$("#foo").text("New Hello World");
$("#foo").html("New Hello World");
jQuery("#foo").text("New Hello World");
jQuery("#foo").html("New Hello World");
jQuery(document).find("#foo").text("New Hello World");
jQuery(document).find("#foo").html("New Hello World");
--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 | 799643.3 Ops/sec |
Vanilla JS .innerHTML | 217774.4 Ops/sec |
Vanilla JS .textContent | 2562020.5 Ops/sec |
Vanilla JS (QuerySelector) .innerText | 667477.2 Ops/sec |
Vanilla JS (QuerySelector) .innerHTML | 225253.2 Ops/sec |
Vanilla JS (QuerySelector) .textContent | 1628098.0 Ops/sec |
Vanilla JS (QuerySelectorAll) .innerText | 707854.1 Ops/sec |
Vanilla JS (QuerySelectorAll) .innerHTML | 254256.3 Ops/sec |
Vanilla JS (QuerySelectorAll) .textContent | 220475.0 Ops/sec |
Cash .text | 570746.7 Ops/sec |
Cash .html | 224745.7 Ops/sec |
jQuery .text() | 408341.2 Ops/sec |
jQuery .html() | 206923.0 Ops/sec |
jQuery .find() .text() | 312293.7 Ops/sec |
jQuery .find() .html() | 184321.5 Ops/sec |
I'll provide the answer directly:
The provided JSON data appears to be a list of web performance test results, likely from a browser benchmarking platform such as Snyk or Chrome DevTools.
Here are some observations and insights based on this data:
.text()
and .find().text()
)$.html
and $._cache.html
)ExecutionsPerSecond
: The number of executions per second for each test.TestName
: A brief description of the test being run.If you're looking for specific insights or analysis, please let me know what you'd like to know!