var array = Array.from({length: 40}, () => ({ value: Math.floor(Math.random() * 140)}));
const values = array.map(({ value }) => value)
const f = [ new Set(values)]
const values = array.map(({ value }) => value)
const s = new Set(array)
const l = Array.from(s)
const b = array.filter((item,index) => array.indexOf(item.value)=== index)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Set spread | |
Array from set | |
Filter |
Test name | Executions per second |
---|---|
Set spread | 1575218.9 Ops/sec |
Array from set | 1335953.5 Ops/sec |
Filter | 509903.6 Ops/sec |
I'd be happy to help you understand the provided JSON benchmark data.
Benchmark Definition: The benchmark is designed to test three different approaches for filtering and manipulating an array of random values:
...
) to convert a set into an array.Array.from()
.Options Compared:
The benchmark compares the performance of these three approaches on a large dataset of 40 random values, generated using Array.from()
with an initial length of 40 and a callback function that generates random values between 0 and 139.
Pros and Cons:
Library:
In this benchmark, no specific libraries are used beyond the built-in JavaScript Array
, Set
, and Map
data structures. The Array.from()
method is used to create arrays from iterables, and the Set
constructor is used to create sets from arrays.
Special JS Feature/Syntax:
The spread operator (...
) is used in the Set Spread approach, which is a relatively new feature introduced in ECMAScript 2018. It allows for concise array destructuring and spreading of values into a new array.
Other Alternatives:
Array.prototype.filter()
or reduce()
could be considered.Keep in mind that the performance differences between these approaches may vary depending on the specific use case and requirements.