var a = [];
for(let i = 0; i < 1000000; i++) {
a.push(i);
}
var b = new Set(a)
return a.includes(9)
return b.has(9)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
array.includes | |
set.has |
Test name | Executions per second |
---|---|
array.includes | 15720540.0 Ops/sec |
set.has | 15684142.0 Ops/sec |
I'll break down the benchmark and explain what's being tested, compared, and the pros and cons of each approach.
Benchmark Overview
The benchmark measures the performance difference between using Array.includes()
and Set.has()
to search for an element in two arrays with 1 million entries. The test case uses a JavaScript library (a simple array and Set implementation).
Script Preparation Code
The script preparation code creates two arrays:
a
: An array of 1 million integers, populated using a for
loop.b
: A new Set
object containing the elements of a
.Html Preparation Code
There is no HTML preparation code provided.
Individual Test Cases
There are two test cases:
return a.includes(9)
Array.includes()
to search for an element in array a
.return b.has(9)
Set.has()
to search for an element in set b
.Pros and Cons
Here are some pros and cons of each approach:
Array.includes()
for very large arrays.Library: Simple Array and Set Implementation
The test case uses a simple array and set implementation, which is likely just for demonstration purposes. In real-world scenarios, you would typically use built-in JavaScript arrays and sets.
Other Considerations
Array.includes()
and Set.has()
, which can affect performance.Alternatives
If you wanted to compare the performance of other methods, such as:
Set.size()
or Set.delete()
.