<div id="container"></div>
const container = document.querySelector('#container');
for (let i=0; i<300; i++)
container.appendChild(document.createElement('p'));
container.innerHTML ='';
container.replaceChildren()
while (container.firstChild)
container.removeChild(container.firstChild)
while (container.lastChild)
container.removeChild(container.lastChild)
container.textContent=''
const clone = container.cloneNode(false);
container.parentNode.replaceChild(clone, container);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
innerHTML | |
replaceChildren | |
remove firstChild | |
remove lastChild | |
textContent | |
remove and recreate root element |
Test name | Executions per second |
---|---|
innerHTML | 2066941.0 Ops/sec |
replaceChildren | 2109725.5 Ops/sec |
remove firstChild | 2936671.2 Ops/sec |
remove lastChild | 2941773.5 Ops/sec |
textContent | 1962089.1 Ops/sec |
remove and recreate root element | 188694.5 Ops/sec |
Benchmark Explanation
MeasureThat.net is a website that allows users to create and run JavaScript microbenchmarks. The provided benchmark measures the performance of different methods for clearing content from an HTML element.
The test case starts by creating a container element with document.querySelector('#container')
. It then appends 300 paragraph elements (document.createElement('p')
) to the container, simulating a large amount of content.
The actual benchmarking code is divided into six test cases:
container.replaceChildren()
.while (container.firstChild) ...
).while (container.lastChild) ...
).const clone = container.cloneNode(false);
) and then replacing it in the DOM.Comparison of Methods
The benchmark compares the performance of each method, which can be summarized as follows:
innerHTML
, but more efficient than removing child elements one by one.innerHTML
.replaceChildren
, as they require iterating over all child nodes.innerHTML
or replaceChildren
, which can have security implications.replaceChildren
.Library and Special JS Features
The test case uses the document
object, which is a part of the DOM (Document Object Model). The cloneNode()
method used in one of the test cases is also a standard DOM method.
There are no special JavaScript features or syntax used in this benchmark that would be unfamiliar to most software engineers.
Alternatives
Other methods for clearing content from an HTML element might include:
display: none
or visibility: hidden
, to hide the content.However, these alternatives might not be suitable for all use cases and may require additional considerations, such as performance overhead or compatibility issues.