var a = [
'123.39.218.212',
'147.31.131.14',
'27.154.247.128',
];
var b = new Set(a)
return a.includes(9)
return b.has(9)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
includes | |
lookup |
Test name | Executions per second |
---|---|
includes | 63018788.0 Ops/sec |
lookup | 111597576.0 Ops/sec |
The benchmark defined in the provided JSON tests the performance of two different approaches for checking the presence of a value in a collection: using Array.prototype.includes
against Set.prototype.has
.
Array.prototype.includes():
true
or false
as appropriate.a
) and is designed to be straightforward but less efficient for large datasets, as it needs to check each element linearly until it finds a match or reaches the end.Set.prototype.has():
b
) and utilizes the optimized lookup capabilities of Set. Because Sets are implemented as hash tables, they typically provide a much faster lookup time, especially for larger datasets.Pros of using Array.includes()
:
Cons of using Array.includes()
:
Pros of using Set.has()
:
Cons of using Set.has()
:
Object for Lookup:
true
or false
as the value (e.g., { '123.39.218.212': true }
). Lookup would then also be O(1) on average, similar to using a Set.Using a Map:
Sorting the Array:
For larger datasets:
In summary, this benchmark tests two common approaches for presence checking in JavaScript: Array.includes()
and Set.has()
. The results from the latest benchmark indicate that Set.has()
is significantly faster than Array.includes()
, further highlighting the efficiency of using Sets for large collections or frequent lookups. Software engineers should choose the approach based on the specific use case, size of the dataset, and performance requirements.