var array = Array.from({length: 400000}, () => 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 | 127.8 Ops/sec |
Array from set | 123.3 Ops/sec |
Filter | 7.8 Ops/sec |
Let's break down the provided benchmark and explain what's being tested.
Benchmark Definition
The benchmark defines three different approaches to remove duplicates from an array:
const f = [... new Set(array)]
const s = new Set(array)\r\nconst l = Array.from(s)
const b = array.filter((i,index) => array.indexOf(i)=== index)
These approaches aim to achieve the same result: removing duplicate elements from the input array.
Options Compared
The benchmark compares the performance of these three approaches:
new Set()
and spread operator ...
)Array.from()
with a set)filter()
method)Pros and Cons of Each Approach:
Set
data structure to automatically remove duplicates. However, it requires JavaScript 13 or later for syntax support.Array.from()
with a set, which may seem counterintuitive. While it's not the most common way to remove duplicates, it can be effective in certain situations. The main advantage is that it works on older browsers and JavaScript versions that don't support Set
spread.Library Usage
In this benchmark, the Array.from()
function is used, which is a built-in JavaScript function. No additional library is required.
Special JS Features or Syntax
The Set Spread syntax (const f = [... new Set(array)]
) requires JavaScript 13 or later for support.
Other Considerations:
Array.from({length: 400000}, () => Math.floor(Math.random() * 140))
. This ensures a large enough sample size to detect performance differences between the approaches.Alternative Approaches
If you're interested in exploring alternative methods for removing duplicates from an array, here are a few more:
reduce()
: array.reduce((acc, curr) => acc.includes(curr) ? acc : [...acc, curr], [])
indexOf()
and slicing: const uniqueArray = array.slice(0, array.indexOf(i) + 1)
uniq()
functionKeep in mind that these alternatives may not be as efficient or scalable as the approaches tested in this benchmark.