var array = Array.from({length: 20}, () => Math.floor(Math.random() * 140));
const f = [ new Set(array)]
const l = Array.from(new Set(array))
const b = array.filter((i,index,a) => a.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 | 551322.3 Ops/sec |
Array from set | 633284.5 Ops/sec |
Filter | 1649817.1 Ops/sec |
Let's break down the benchmark and explain what's being tested.
Overview
The benchmark is designed to compare three approaches for finding unique elements in an array:
const f = [... new Set(array)]
(Set spread)\r\nconst l = Array.from(new Set(array))
(Array from set)const b = array.filter((i,index,a) => a.indexOf(i) === index)
(Filter)What's being tested
The benchmark is testing the performance of these three approaches in finding unique elements in an array. The input array has 20 random integers between 0 and 139.
Options compared
new Set(array)
, effectively removing duplicates.Pros and cons of each approach
Library usage
None of the benchmark tests explicitly use any libraries beyond the built-in JavaScript Set
object and array methods.
Special JS feature or syntax
The test cases do not use any special JavaScript features or syntax beyond what's required to demonstrate the three approaches. However, it's worth noting that some browsers may support additional features like const f = [... new Set(array)].map((x) => x);
which uses map()
function along with set spread but this is not explicitly tested in this benchmark.
Other alternatives
If you want to test other approaches for finding unique elements, here are a few examples:
for...of
loop and pushing unique elements into an array.However, these alternatives may not be as straightforward or efficient as the approaches tested in this benchmark.