<div id="container"></div>
var node = document.getElementById('container');
for(var i = 0; i < 1000; i++) node.appendChild(document.createElement('div'));
var items = document.querySelectorAll('#container > div');
let i = 0;
for (;items[i];) {
i++;
}
var items = document.querySelectorAll('#container > div');
let i = 0;
while (items[i]) {
i++;
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
For | |
While |
Test name | Executions per second |
---|---|
For | 1639.1 Ops/sec |
While | 1695.7 Ops/sec |
Let's break down the provided benchmark and explain what's being tested.
Benchmark Definition
The benchmark is defined by two JavaScript scripts:
div
elements). The var node = document.getElementById('container');
line retrieves the container element, and then we create a loop to append 1000 new div
elements to it.The benchmark's goal is to measure the performance of two different loops: a traditional for
loop and a while
loop, both applied to a querySelector result (items
).
Comparison Options
There are two comparison options:
for
loop with an index variable i
. This loop increments the index until it reaches the end of the array.while
loop that iterates over the querySelector result (items
) as long as its value is truthy.Pros and Cons
for
loops.In this benchmark, the results show that the while
loop performs slightly better on Chrome 107 on a desktop device. However, it's essential to note that these results may vary depending on the specific use case and environment.
Library Usage
There is no library used in these test cases.
Special JS Features or Syntax
The benchmark uses:
;
): Used to separate statements in JavaScript code.Keep in mind that some features, like querySelector, are specific to modern browsers and may not be supported by older browsers or environments.
Other Alternatives
For similar benchmarks, you can consider alternatives such as:
Array.prototype.forEach()
instead of for
loops.Set
or other data structures.while
loops with early termination conditions.These alternatives would require modifications to the benchmark definition and test cases to accommodate the new scenarios.