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)
const set = {}
array.forEach(val => set.hasOwnProperty(val) ? set[val] = true : '')
const b = Object.keys(set)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Set spread | |
Array from set | |
Filter | |
Basic forEach |
Test name | Executions per second |
---|---|
Set spread | 1312297.8 Ops/sec |
Array from set | 1220334.4 Ops/sec |
Filter | 259984.4 Ops/sec |
Basic forEach | 3053994.5 Ops/sec |
Let's dive into the provided benchmark and explain what's being tested, compared, and the pros and cons of each approach.
Benchmark Overview
The benchmark compares four approaches to remove duplicates from an array:
Set
using the spread operator (Set spread
)Set
explicitly (Array from set
)Filter
)forEach
with a boolean flag to track unique elements (Basic forEach
)Test Case Explanation
Each test case is defined in a separate object, which includes:
Benchmark Definition
: The actual code that performs the benchmarking operation.Test Name
: A descriptive name for the test case.Here's a brief explanation of each test case:
[...new Set(array)]
). This method is concise and efficient, but may incur additional overhead due to the creation of an intermediate Set object.new Set(array)
, then converts it back to an array using Array.from(s)
. This approach involves two separate operations: creating a Set and converting it to an array.filter()
method to create a new array with only unique elements, where each element is checked against its original index in the input array (array.filter((i, index) => array.indexOf(i) === index)
). This approach has higher overhead due to the need for indexing and comparing elements.forEach()
with a boolean flag to track unique elements by checking if an element is already present in an object using the hasOwnProperty
method (array.forEach((val) => set.hasOwnProperty(val) ? set[val] = true : '')
). This approach also has higher overhead due to the use of forEach()
and the need for object lookup.Library Usage
The benchmark uses a few libraries:
Set
, Array.from()
, filter()
, and forEach()
. However, some browsers may have slightly different implementations of these methods, which could affect the results.Special JS Features or Syntax
There are no special JavaScript features or syntax used in this benchmark. The code is straightforward and follows standard JavaScript best practices.
Pros and Cons of Each Approach
Here's a brief summary of the pros and cons of each approach:
forEach()
and object lookup.Other Alternatives
If you're looking for alternative approaches to remove duplicates from an array, consider the following:
Map
) instead of a Set.uniq
function.Keep in mind that each approach has its trade-offs and may not be suitable for all use cases. The choice ultimately depends on the specific requirements, performance constraints, and personal preference.