var array = Array.from({length: 40}, () => ({ value: Math.floor(Math.random() * 140)}));
const values = array.map(({ value }) => value)
const f = [ new Set(values)]
const values = array.map(({ value }) => value)
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 | 1462627.0 Ops/sec |
Array from set | 999646.1 Ops/sec |
Filter | 539023.6 Ops/sec |
Let's break down the benchmark and explain what's being tested.
Benchmark Context
MeasureThat.net is a website that allows users to create and run JavaScript microbenchmarks. The website provides a platform for comparing the performance of different JavaScript implementations, such as browsers or Node.js engines.
Script Preparation Code
The provided script preparation code creates an array of 40 random objects with value
properties between 0 and 139:
var array = Array.from({length: 40}, () => ({ value: Math.floor(Math.random() * 140)}));
This code is used as input for the benchmark tests.
Html Preparation Code
There is no HTML preparation code provided, which means that the benchmark only involves JavaScript execution and does not rely on any specific HTML or DOM-related functionality.
Individual Test Cases
There are three individual test cases:
[... new Set(values)]
).Array.from()
.array.filter((i, index) => array.indexOf(i) === index)
).Library Usage
None of the test cases explicitly use any external libraries.
Special JS Features or Syntax
There are no special JavaScript features or syntax used in these test cases. They only rely on standard JavaScript language constructs.
Pro/Cons of Different Approaches
Here's a brief summary of the pros and cons of each approach:
Array.from()
.Other Alternatives
If these test cases were to be rewritten using different approaches or libraries, some alternative solutions could include:
reduce()
instead of set spread: Array.from({length: 40}, () => ({ value: Math.floor(Math.random() * 140)})).reduce((a, b) => new Set(a).has(b.value), [])
sort()
and filtering: array.sort((a, b) => a.value - b.value);
followed by array.filter((i, index) => array.indexOf(i) === index)
Keep in mind that these alternative solutions would likely have different performance characteristics and may not be as efficient or readable as the original implementations.
In conclusion, the benchmark tests are designed to compare the performance of three different approaches for creating an array of unique values from a larger array: set spread, array from set, and filtering. The pros and cons of each approach highlight the trade-offs between conciseness, efficiency, and readability in implementing these operations.