function getArray(length) {
const result = [];
for (let i = 0; i < length; i++) {
result.push(i + 'abc'); // In case the browser does some sort of optimization for arrays with only integers ¯\_(ツ)_/¯
}
return result;
}
function getRandomTargetElement(arrayLength) {
const index = Math.floor(Math.random() * arrayLength);
return index + 'abc';
}
array_small = getArray(20);
set_small = new Set(array_small);
array_small.includes(getRandomTargetElement(20));
set_small.has(getRandomTargetElement(20))
const target = getRandomTargetElement(10000);
const set = new Set(array_small);
set.has(target)
const set = new Set(array_small);
for (let i = 0; i < 1000; i++) {
const target = getRandomTargetElement(20);
set.has(target)
}
for (let i = 0; i < 1000; i++) {
const target = getRandomTargetElement(20);
array_small.includes(target)
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Array.includes, 20 elements | |
Set.has, 20 elements | |
Array to Set + Set.has, 10 000 elements | |
Array to Set + Set.has x 1000, 20 elements | |
Array.includes x 1000, 20 elements |
Test name | Executions per second |
---|---|
Array.includes, 20 elements | 11460438.0 Ops/sec |
Set.has, 20 elements | 111400216.0 Ops/sec |
Array to Set + Set.has, 10 000 elements | 1195253.4 Ops/sec |
Array to Set + Set.has x 1000, 20 elements | 85031.2 Ops/sec |
Array.includes x 1000, 20 elements | 9160.9 Ops/sec |
The benchmark defined in the JSON focuses on comparing the performance of two approaches to check for the existence of elements in an array with a limited size (20 elements). The two main methods compared are Array.includes()
and Set.has()
, taking into account both direct checks and usage in loops.
Array.includes()
includes
method checks if an array contains a certain value, returning true
or false
.Set.has()
has
method is used with the Set
object, which stores unique values and is optimized for fast lookups.Array.includes()
, especially as the size of the dataset increases, thanks to its underlying data structure, which allows for average-case constant time complexity (O(1)).Set
must be created from the array before using has
(though this is negligible in small data sizes).Direct Comparison:
array_small.includes(getRandomTargetElement(20));
includes
.set_small.has(getRandomTargetElement(20));
Set.has()
.Set Usage and Scaling:
const target = getRandomTargetElement(10000); const set = new Set(array_small); set.has(target);
Set
from a 20-element array and check for a target item drawn from a pool of 10,000.for (let i = 0; i < 1000; i++) { const target = getRandomTargetElement(20); set.has(target); }
Set.has()
.Array.includes()
in a loop: for (let i = 0; i < 1000; i++) { const target = getRandomTargetElement(20); array_small.includes(target); }
Array.includes()
performed better for single checks with small arrays, but as repetition and larger element scopes were introduced, Set.has()
exhibited better performance due to its optimized lookup capacity.Set.has()
could handle the checks more efficiently, validating its advantages in a practical use case.Set
may be slightly less memory-efficient due to storing unique elements and the overhead of the data structure, its performance benefits can outweigh those costs when dealing with larger datasets.Array.includes()
may suffice. However, for larger datasets or frequent lookups, Set.has()
shines.Apart from these methods, developers could also utilize:
for...of
or forEach
in array operations, though these will not typically match the performance of Set.has()
for lookups.Map
for key-value pair lookups can also serve as alternatives when additional data representation is required.