<script src='https://cdn.jsdelivr.net/npm/lodash@4.17.19/lodash.min.js'></script>
function double(n) {
return n*2;
}
var data = [Array(200)].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 | 449102.1 Ops/sec |
es6 map | 469428.6 Ops/sec |
Let's break down the benchmark and its components.
Benchmark Definition
The benchmark is comparing the performance of two approaches: using the Lodash library (_.map
) versus the native JavaScript method (data.map
).
Options Compared
_.map(data, double)
: This option uses the Lodash library to perform the mapping operation. The double
function is an external function that takes a value n
and returns its double.data.map(double)
: This option uses the native JavaScript method for mapping arrays.Pros and Cons
_.map
)data.map
)Library: Lodash
Lodash is a popular JavaScript utility library that provides a wide range of functions for working with arrays, objects, and other data structures. The _.map
function is part of this library, allowing developers to easily perform mapping operations on arrays without writing custom code. Lodash's purpose is to simplify common programming tasks and provide a standardized way of handling various edge cases.
Test Case
The test case uses the double
function as an external function that takes a value n
and returns its double. This function is not included in the benchmark definition itself but is instead loaded from an external source, likely due to its simplicity and lack of dependencies.
Special JS Feature/Syntax: None
There are no special JavaScript features or syntax used in this benchmark beyond the standard features supported by modern JavaScript engines.
Other Alternatives
If you're interested in exploring alternative approaches, here are a few options:
Array.prototype.forEach
: Instead of using _.map
, you could use the forEach
method to iterate over the array and apply the transformation function. This approach would eliminate the need for an external library.Keep in mind that these alternatives might not provide the same level of convenience as using Lodash's _.map
function, but they can offer similar performance characteristics.