var arr = [];
for (let i = 0; i < 100; i++) {
arr.push(i);
}
function forLoop(array, item) {
for (var i = 0; i < array.length; i++) {
if (array[i] === item) {
return i;
}
}
return -1;
}
function whileLoop(array, item) {
var i = 0;
while (i < array.length) {
if (array[i] === item) {
return i;
}
i += 1;
}
return -1;
}
function index(array, item) {
return array.indexOf(item);
}
function sort(array, item) {
let arr2 = arr.sort();
return arr2[0];
}
index(arr, 101)
sort(arr, 101)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
431 | |
123 |
Test name | Executions per second |
---|---|
431 | 11468794.0 Ops/sec |
123 | 1013625.0 Ops/sec |
I'd be happy to help you understand the provided benchmark.
Benchmark Overview
The benchmark measures the performance of three different approaches for finding an item in an array: for
loop, while
loop, and built-in indexOf()
function (which is likely implemented using a more efficient algorithm under the hood). The benchmark compares these approaches on a sample array of 100 elements.
Benchmark Definition JSON
The provided JSON defines two benchmark tests:
arr
and populates it with numbers from 0 to 99 using a for
loop.forLoop(array, item)
: uses a traditional for
loop to search for the specified item
in the array.whileLoop(array, item)
: uses a while
loop to search for the specified item
in the array.index(array, item)
: calls the built-in indexOf()
function on the array.ExecutionsPerSecond
metric).Comparison Options
The benchmark compares the performance of three approaches:
for
loop to search for the item in the array.while
loop to search for the item in the array.indexOf()
function, which is likely implemented using a more efficient algorithm under the hood.Pros and Cons
for
loop, but with potentially less overhead due to less branching.indexOf()
due to the need for manual array iteration.indexOf()
, which may vary between browsers.Library and Syntax
The benchmark uses no libraries beyond what is built into JavaScript. There are no special JS features or syntax used in this benchmark.
Alternatives
Other approaches to find an item in an array could include:
Array.prototype.find()
(introduced in ECMAScript 2015)indexOf
functionKeep in mind that these alternatives may have different performance characteristics and trade-offs compared to the for
, while
, and indexOf()
approaches used in this benchmark.