var array = Array.from({length: 40}, () => Math.floor(Math.random() * 140));
const f = [ new Set(array)]
const s = new Set(array)
const l = Array.from(s)
const b = array.filter((i,index) => array.indexOf(i)!== index)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Set spread | |
Array from set | |
Filter |
Test name | Executions per second |
---|---|
Set spread | 166111.8 Ops/sec |
Array from set | 162484.9 Ops/sec |
Filter | 291543.5 Ops/sec |
Let's break down the provided JSON data and explain what's being tested, compared, and analyzed.
Benchmark Definition
The Script Preparation Code
section contains a simple JavaScript code that generates an array of 40 random integers between 0 and 139 using the Array.from()
method. This code is executed to prepare for the benchmarking process.
Individual Test Cases
There are three test cases defined:
Array.prototype.push()
or Set.prototype.add()
methods can be used with an array created using the spread operator (const f = [... new Set(array)]
).Set
object (const s = new Set(array)
and then taking the result to an array using Array.from(s)
).Array.prototype.filter()
method, which creates a new array with all elements that pass the test implemented by the provided function.Options Compared
The benchmarking process compares two main approaches for each test case:
Set
object from an array and then converting it back to an array using Array.from()
.Array.prototype.filter()
to filter elements in the original array.Pros and Cons of Different Approaches
Set
and then converting it back to an array.Library Usage
None of the test cases use any external libraries or frameworks. They rely solely on built-in JavaScript features.
Special JS Features or Syntax
There are no special JS features or syntax used in these test cases. However, it's worth noting that the Array.from()
method is a relatively modern feature introduced in ECMAScript 2015 (ES6).
Other Alternatives
If you're interested in exploring alternative approaches, here are a few options:
Map
instead of Set
for creating an array with unique elements.Array.prototype.reduce()
method to sum up elements that pass a certain condition.Keep in mind that these alternatives might not be directly comparable to the original test cases and may require adjustments to the benchmarking code.