<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
var arr = [];
var map = new Map();
for (let i = 1; i <= 10000; i++) {
//let r = makeid(6);
let r = Math.random().toString(36).substring(8);
arr.push({
r
});
map.set(r, {
r
});
}
let smain = [];
for (let s of map.values() ) {
smain.push({r: s.r, r2: s.r + s.r})
}
let main = _.uniqBy(arr, 'r').map(ar => ({r: ar.r, r2: ar.r + ar.r}))
let newarr = Array.from(map);
let newarr2 = [];
newarr.forEach((s) => {
newarr2.push({r: s.r, r2: s.r + s.r})
})
let newarr = Array.from(map, s => ({r: s.r, r2: s.r + s.r}))
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
map | |
lodash | |
arr map | |
arr map2 |
Test name | Executions per second |
---|---|
map | 3237.5 Ops/sec |
lodash | 571.7 Ops/sec |
arr map | 1036.6 Ops/sec |
arr map2 | 2230.7 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks.
Benchmark Definition
The provided JSON defines a benchmark test case named "lodash vs map 3". This benchmark compares the performance of three different approaches:
map
: Using the Map
data structure in JavaScript to iterate over its values and create a new array.arr map
: Using the Array.prototype.map()
method on the arr
array to create a new array.arr map2
: Similar to arr map
, but using the arrow function syntax.Options being compared
The three options being compared are:
Map
data structure vs iterating over an Array
Array.prototype.map()
method vs using the arrow function syntaxPros and Cons of each approach
map
(iterating over a Map
)Map
data structure is optimized for iteration.Map
.Array
.arr map
(using Array.prototype.map()
)Array.prototype.map()
method is optimized for performance.arr map2
(using arrow function syntax)arr map
, but with improved code readability and conciseness.Array.prototype.map()
method.Library: Lodash
The benchmark uses Lodash, a popular JavaScript utility library, for its uniqBy
function. Lodash provides a simple way to filter and transform arrays, making it easy to compare different approaches.
In this benchmark, Lodash is used to create an array of unique objects using the uniqBy
function, which takes the r
property as a key. The resulting array is then mapped over using the arrow function syntax (ar => ({r: ar.r, r2: ar.r + ar.r})
).
Special JS feature/syntax
In this benchmark, the following special JavaScript features are used:
arr map2
test case to simplify and conciseness of code.let r = Math.random().toString(36).substring(8);
).Other alternatives
If you're looking for alternative approaches, here are a few options:
Array.prototype.forEach()
instead of Array.prototype.map()
for...of
loop or a library like Ramda to filter and transform the arrayObject
or a custom implementation, to iterate over.However, it's worth noting that these alternatives may not be comparable in terms of performance, due to the specific use cases and optimizations used by each approach.