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 b2 = array.filter((i,index, arr) => arr.indexOf(i)=== index)
var ar2 = [];
array.forEach(i => {
if (!ar2.includes(i)) {
ar2.push(i);
}
});
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Set spread | |
Array from set | |
Filter | |
filter 2 | |
includes |
Test name | Executions per second |
---|---|
Set spread | 1386231.6 Ops/sec |
Array from set | 1236415.1 Ops/sec |
Filter | 361293.4 Ops/sec |
filter 2 | 1420829.8 Ops/sec |
includes | 1541594.8 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks!
The provided JSON represents a benchmark test that compares the performance of different approaches to achieve uniqueness in an array. The goal is to determine which method is the fastest.
Options being compared:
Set spread
(const f = [... new Set(array)]
)Array from set
(const s = new Set(array)\r\nconst l = Array.from(s)
)Filter
(const b = array.filter((i,index) => array.indexOf(i)=== index)
)Includes with push
(var ar2 = [];\r\narray.forEach(i => {\r\n\tif (!ar2.includes(i)) {\r\n ar2.push(i);\r\n }\r\n});
)Pros and Cons of each approach:
Array.from()
.map()
or forEach()
).filter()
function to create a new array with only unique elements by checking each element's index against its existence in the original array.ar2
).Library and syntax used in test cases:
Set
: A built-in JavaScript object that automatically eliminates duplicates. Used in Set spread
and Array from set
.Other considerations:
Alternatives:
Other approaches to achieve uniqueness in an array include:
Map
instead of a Set
. While Map
is similar to Set
, it uses keys instead of values, which can affect performance.uniqueValue
function from the Lodash library (if using that library).Keep in mind that the best approach often depends on the specific requirements and constraints of your project.