<script src='https://cdn.jsdelivr.net/g/lodash@4(lodash.min.js+lodash.fp.min.js)'></script>
function double(n) {
return n*2;
}
var data = [Array(20)].map((v, idx) => idx);
_.map(double, data);
_.map(double)(data);
data.map(double)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
lodash fp map | |
lodash fp map composed | |
es6 map |
Test name | Executions per second |
---|---|
lodash fp map | 3918942.0 Ops/sec |
lodash fp map composed | 842626.6 Ops/sec |
es6 map | 5830921.5 Ops/sec |
Benchmark Explanation
The provided benchmark compares the performance of two approaches: using native JavaScript (es6
) and using the lodash
library with functional programming (FP) capabilities.
Options Compared
map()
function in JavaScript, which applies a given function to each element of an array._map()
function from Lodash, a popular utility library for JavaScript, along with functional programming techniques._.pipe()
, which applies the functions in sequence to each element of an array.Pros and Cons
Library and Purpose
The lodash
library is a popular utility library for JavaScript that provides a wide range of functional programming features. The _map()
function in Lodash applies a given function to each element of an array, similar to the native map()
function in JavaScript. However, Lodash's implementation may have additional overhead due to its caching and memoization mechanisms.
Special JS Feature or Syntax
None mentioned in this benchmark.
Other Alternatives
For those interested in exploring alternative approaches, here are a few options:
map()
function using recursion or iteration.forEach()
or reduce()
.