var a = [100,90,80,70,60,50,40,30,20,1,2,3,4,5,6,7,8,9,10];
var b = new Set(a)
a.indexOf(30);
b.has(30);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
array | |
set |
Test name | Executions per second |
---|---|
array | 38661332.0 Ops/sec |
set | 38610700.0 Ops/sec |
Let's break down the provided benchmark JSON and explain what's being tested.
Benchmark Definition
The website provides a JavaScript microbenchmarking platform, where users can create and run benchmarks. The provided JSON represents a single benchmark definition:
{
"Name": "set vs array find if exists v2",
"Description": null,
"Script Preparation Code": "var a = [100,90,80,70,60,50,40,30,20,1,2,3,4,5,6,7,8,9,10];\r\nvar b = new Set(a)",
"Html Preparation Code": null
}
Here's what's being tested:
a
is initialized as an array of 20 integers.b
is created from the same array using a Set
object.Options Compared
Two different approaches are compared in this benchmark:
indexOf()
method to search for a specific element (30) in the array a
. This approach has a time complexity of O(n), where n is the length of the array.has()
method to check if an element exists in the set b
. This approach has an average time complexity of O(1) for most modern JavaScript engines, as sets use a hash table internally.Pros and Cons
Here are some pros and cons of each approach:
Library and Purpose
The Set
object is a built-in JavaScript library that provides an efficient way to store and look up unique values. The purpose of using a set in this benchmark is to take advantage of the hash table implementation, which allows for fast lookup times.
Special JS Feature or Syntax
None mentioned in this benchmark.
Other Alternatives
While Set
objects are widely supported, there are alternative data structures that can be used for fast lookups:
in
operator or the hasOwnProperty()
method to check if a property exists in an object.Keep in mind that these alternatives may not be as widely supported or performant as sets, especially in older browsers or environments.