<script src="https://cdn.jsdelivr.net/lodash/4.16.0/lodash.min.js"></script>
var values = [{a: 30310}, {b: 100303}, {c: 3040494}]
_.map(values, function(v,i) {})
values.map(function(v,i) {})
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
lodash | |
Array |
Test name | Executions per second |
---|---|
lodash | 2434901.8 Ops/sec |
Array | 8473225.0 Ops/sec |
I'll break down the benchmark and explain what's being tested, compared, and their pros and cons.
Benchmark Definition
The benchmark is comparing two JavaScript functions: _.map()
from Lodash (a utility library) and Array.prototype.map()
, which is a native JavaScript function.
What are they testing?
These two functions will be executed on the same input array (values
) with different configurations. The goal is to measure the performance difference between these two approaches.
Options compared:
_map()
: This function takes an array and a callback function as arguments, which will be called for each element in the array.Array.prototype.map()
: This function also takes an array and a callback function as arguments, but it uses the native JavaScript engine.Pros and Cons:
_map()
:Array.prototype.map()
:_map()
, making it harder to understand for some developers.Library used:
Lodash (version 4.16.0) is a popular utility library that provides a wide range of functions for tasks such as string manipulation, array and object operations, and more. In this benchmark, _.map()
is used from Lodash's source code.
Special JS feature/syntax:
This benchmark does not use any special JavaScript features or syntax, so it should be accessible to most software engineers.
Alternatives:
Other alternatives for implementing the mapping function could include:
_.map()
or Array.prototype.map()
.map()
and arrow functions to simplify the code.Keep in mind that these alternatives would likely have different performance characteristics and may not be directly comparable to Lodash's _map()
or the native implementation.