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)
const set = {}
for(var i = 0, l = array.length; i < l; i++){
if(!set.hasOwnProperty(array[i])) set[array[i]] = true
}
const b = Object.keys(set)
const set = {}
const b = array.filter((val) => {
if(!set.hasOwnProperty(val)) {
set[val] = true
return true
}
return false
})
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Set spread | |
Array from set | |
Filter | |
Basic forEach | |
for loop | |
filterWithSet |
Test name | Executions per second |
---|---|
Set spread | 908120.3 Ops/sec |
Array from set | 918955.9 Ops/sec |
Filter | 1035059.9 Ops/sec |
Basic forEach | 13790324.0 Ops/sec |
for loop | 1399112.1 Ops/sec |
filterWithSet | 1552571.5 Ops/sec |
Let's break down the provided benchmark and explain what's being tested, compared, and their pros and cons.
Benchmark Overview
The benchmark tests the performance of different approaches to remove duplicates from an array:
Set
(using Array.from(new Set(array))
)Filter
(using array.filter((i,index) => array.indexOf(i)=== index)
)Basic forEach
(using a manual implementation with a hash table)for loop
filterWithSet
(using a filter function with a set)Options Comparison
Here's a brief overview of each option:
Set
(using Array.from(new Set(array))
)Set
object from the array, which automatically removes duplicates.Filter
(using array.filter((i,index) => array.indexOf(i)=== index)
)filter()
method to create a new array with only unique elements.Basic forEach
(using a manual implementation with a hash table)forEach()
loop with a hash table to keep track of unique elements.for loop
for
loop to iterate over the array, skipping duplicates manually.filterWithSet
(using a filter function with a set)Filter
and Basic forEach
by using a filter function with a set to keep track of unique elements.for
loop or filter()
method due to set operations being used.Library: None
None of the benchmark options rely on external libraries. The Set
object is a built-in JavaScript feature, while the other options use only native JavaScript methods and loops.
Special JS Feature/Syntax: Set
The Set
object uses modern JavaScript features (ECMAScript 2015+) to create a set data structure. This allows for fast and efficient duplicate removal. Older browsers may not support this feature, but it's commonly used in modern web development.
Other Alternatives
Some alternative approaches that could be considered include:
Array.from
with an object as the second argument (e.g., Array.from(array, x => {})
)However, these alternatives may introduce additional dependencies and complexity, making them less suitable for this specific benchmark.