<script src='https://cdn.jsdelivr.net/npm/lodash@4.17.19/lodash.min.js'></script>
function double(n) {
return n*2;
}
var data = [Array(10000)].map((v, idx) => idx);
_.map(data, double);
data.map(double);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
lodash map | |
es6 map |
Test name | Executions per second |
---|---|
lodash map | 53477.9 Ops/sec |
es6 map | 7490.8 Ops/sec |
Let's break down the benchmark and explain what's being tested, compared, and their pros/cons.
Benchmark Overview
The benchmark is designed to compare the performance of two approaches: Lodash's map
function and the native JavaScript map
function (introduced in ECMAScript 2015, also known as ES6).
Script Preparation Code
The script preparation code creates an array data
with 10,000 elements, each indexed by its position in the array. The double
function multiplies its input by 2.
Library: Lodash
Lodash is a popular JavaScript utility library that provides various functions for tasks like array manipulation, string manipulation, and more. In this case, it's being used to implement the map
function. The map
function in Lodash iterates over an array and applies a given function to each element, returning a new array with the results.
Native JavaScript map
Function (ES6)
The native JavaScript map
function is implemented using the ECMAScript 2015 syntax. It's designed to be more efficient and concise than its Lodash counterpart.
Comparison
Two individual test cases are run:
map
function on the data
array, passing the double
function as an argument.map
function directly on the data
array, without any additional arguments.Pros and Cons
Here's a brief summary of each approach:
Other Considerations
It's worth noting that the Lodash map
function might be affected by caching mechanisms in JavaScript engines. If the same map function is called multiple times with the same input, it may return cached results instead of recalculating them. This could potentially skew the benchmark results.
Additionally, some browsers or environments might have different optimizations or implementations for the native map
function, which could affect the results.
Latest Benchmark Results
The latest benchmark results show that:
map
function performed better in this specific test case, with an average of 53477.91015625 executions per second.map
function was slower, with an average of 7490.849609375 executions per second.Keep in mind that these results might not be representative of all use cases or environments.