<p id="foo">
<span>hello</span>
<div>world</div>
</p>
var node = document.querySelectorAll("#foo");
for (let i = 0; i < node.length; i++) {
node[i].innerHTML = '';
}
var node = document.querySelectorAll("#foo");
for (let i = 0; i < node.length; i++) {
node[i].parentNode.removeChild(node[i]);
}
var node = document.querySelectorAll("#foo");
for (let i = 0; i < node.length; i++) {
node[i].innerHTML = '';
node[i].parentNode.removeChild(node[i]);
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
1 | |
2 | |
3 |
Test name | Executions per second |
---|---|
1 | 583904.6 Ops/sec |
2 | 1079862.6 Ops/sec |
3 | 1075425.6 Ops/sec |
This benchmark tests the performance of three different ways to remove HTML elements from the webpage.
Let's break down each test case:
Test 1: node[i].innerHTML = '';
- This approach simply clears the content (text and tags) within each element selected by document.querySelectorAll("#foo")
.
Test 2: node[i].parentNode.removeChild(node[i]);
- This approach removes each element entirely from the DOM tree using its parent node's removeChild()
method.
Test 3: Combines both methods: node[i].innerHTML = '';
followed by node[i].parentNode.removeChild(node[i]);
.
Other Considerations:
The results on MeasureThat.net likely show executions per second, indicating how many times each test can successfully remove elements within a given time period.
Different browsers and environments might yield different performance results due to variations in JavaScript engines and DOM implementations.
Let me know if you have any other questions or want to explore specific aspects in more detail!