<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);
data.map(double);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
lodash fp | |
es6 map |
Test name | Executions per second |
---|---|
lodash fp | 5562146.5 Ops/sec |
es6 map | 17733232.0 Ops/sec |
Let's break down the benchmark and explain what's being tested.
Benchmark Purpose
The benchmark is comparing two approaches to mapping over an array in JavaScript: Lodash's map
function with functional programming (FP) style, and the native ES6 map
method.
Options Compared
There are only two options being compared:
map
function with a functional programming style, where the double
function is applied to each element in the array using the _.map
method.map
method, which applies a given function to each element in the array.Pros and Cons
Here are some pros and cons of each approach:
Lodash FP:
Pros:
Cons:
ES6 Map:
Pros:
Cons:
map
methodLibrary: Lodash
Lodash is a popular utility library for JavaScript that provides a wide range of functions for tasks like array manipulation, string manipulation, and more. In this benchmark, Lodash is used to implement the FP style mapping function.
Special JS Feature or Syntax
There is no special JavaScript feature or syntax being tested in this benchmark. The focus is on comparing two different approaches to mapping over an array.
Other Considerations
When choosing between these two approaches, consider the trade-offs between code readability, performance, and library inclusion. If you need a concise and readable solution that's easy to maintain, Lodash FP might be the better choice. However, if you prioritize speed and don't mind more verbose code, ES6 Map could be the way to go.
Other Alternatives
If you're not using Lodash or ES6 functions, there are other ways to map over an array in JavaScript:
for (let i = 0; i < data.length; i++) { ... }
data.forEach(function(element) { ... });
data.map(function(element, index) { ... });
Each of these alternatives has its own trade-offs and use cases.