<div id='foo'></div>
let parent = document.getElementById('foo');
for (let i = 0; i < 1000; i++) {
let child = document.createElement('div');
parent.appendChild(child);
}
const parent = document.getElementById("foo")
while (parent.firstChild) {
parent.firstChild.remove()
}
const parent = document.getElementById("foo")
parent.innerHTML = "";
const parent = document.getElementById("foo")
parent.innerText = "";
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Loop | |
innerHTML | |
innerText |
Test name | Executions per second |
---|---|
Loop | 3759548.2 Ops/sec |
innerHTML | 2594207.2 Ops/sec |
innerText | 2562128.5 Ops/sec |
Let's break down the provided benchmark and explain what's being tested.
Benchmark Overview
The provided benchmark is designed to measure the performance of JavaScript code on different browsers and platforms. The benchmark consists of three test cases:
Each test case has a script preparation code, which sets up a DOM element with 1000 child elements, and an HTML preparation code, which creates the initial HTML structure.
Test Cases
This test case compares the performance of three different approaches to remove child elements from a parent node:
removeChild()
: Removes a single child element.removeAllChildren()
: Removes all child elements.The script preparation code creates a parent node with 1000 child nodes and then applies each of these three approaches to remove the children. The time taken to execute each approach is measured and compared across different browsers and platforms.
Pros and Cons
removeChild()
: This approach is simple and efficient, but it requires calling removeChild()
on each individual node.removeAllChildren()
: This approach removes all child nodes at once, which can be faster than calling removeChild()
for each individual node. However, it may be less efficient if the parent node has many children.This test case compares the performance of three different approaches to remove child nodes from a parent node using a while
loop:
removeChild()
: Removes a single child element.removeAllChildren()
: Removes all child nodes at once.The script preparation code creates a parent node with 1000 child nodes and then applies each of these three approaches using a while
loop to remove the children. The time taken to execute each approach is measured and compared across different browsers and platforms.
Pros and Cons
removeChild()
: This approach can be slower than removeAllChildren()
due to the repeated calls to removeChild()
.removeAllChildren()
: This approach can be faster, as it removes all child nodes at once. However, it may not work correctly if the parent node has many children.###innerHTML
This test case compares the performance of three different approaches to clear the inner HTML of a parent node:
innerHTML = ""
: Sets the inner HTML of the parent node to an empty string.innerText = ""
: Sets the text content of the parent node to an empty string.The script preparation code creates a parent node with 1000 child nodes and then applies each of these three approaches to clear the inner HTML. The time taken to execute each approach is measured and compared across different browsers and platforms.
Pros and Cons
innerHTML = ""
: This approach can be faster than innerText = ""
, as it only updates the inner HTML.innerText = ""
: This approach may be slower, as it also updates the text content of the parent node.###innerText
This test case compares the performance of two different approaches to clear the inner text content of a parent node:
innerText = ""
: Sets the text content of the parent node to an empty string.The script preparation code creates a parent node with 1000 child nodes and then applies each of these two approaches to clear the inner text content. The time taken to execute each approach is measured and compared across different browsers and platforms.
Pros and Cons
innerText = ""
: This approach can be faster than no clearing, as it only updates the text content.Libraries and Special Features
None of the provided test cases use any libraries or special JavaScript features. The script preparation code only uses built-in DOM methods to create and manipulate the DOM elements.
Other Alternatives
There are several other alternatives for benchmarking JavaScript performance, including:
Each of these alternatives has its own strengths and weaknesses, and some may be more suitable than others depending on the specific use case.