<script src="https://cdn.jsdelivr.net/lodash/4.16.0/lodash.min.js"></script>
var value = [{a: 30310}, {b: 100303}, {c: 3040494}]
_.each(value, function(v,i) {})
value.forEach(function(v,i) {})
_.map(value, function(v,i) {})
_.forEach(value, function(v,i) {})
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
lodash.each | |
native | |
lodash.map | |
lodash.forEach |
Test name | Executions per second |
---|---|
lodash.each | 2791309.2 Ops/sec |
native | 10765332.0 Ops/sec |
lodash.map | 3333224.5 Ops/sec |
lodash.forEach | 2858327.2 Ops/sec |
The provided JSON represents a benchmark test suite for JavaScript microbenchmarks on the MeasureThat.net website.
What is tested?
The benchmark tests four different approaches to iterate over an array in JavaScript:
lodash.each
native
(the built-in forEach
method)lodash.map
These approaches are compared in terms of execution speed, which is measured by the number of executions per second.
Options comparison
The benchmark compares three options:
lodash.each
: a function from the Lodash library that applies a provided function to each element of an array.native
: the built-in forEach
method in JavaScript, which applies a provided function to each element of an array.lodash.map
: another function from the Lodash library that returns a new array with the results of applying a provided function to each element of the original array.Pros and cons
Here are some pros and cons of each approach:
lodash.each
:native
: using the built-in forEach
method is generally convenient and efficient, but may not always be as performant as custom implementations like lodash.each
.lodash.map
:Library and syntax
The benchmark uses the Lodash library, which is a popular JavaScript utility library that provides a wide range of functions for tasks such as string manipulation, array manipulation, and more. The lodash.each
, lodash.forEach
, and lodash.map
functions are part of this library.
No special JavaScript features or syntax are used in this benchmark.
Other alternatives
If you want to explore alternative approaches, here are a few options:
Array.prototype.reduce()
instead of forEach
.for
loop or a while
loop.Keep in mind that these alternatives may not always provide the same performance as optimized libraries like Lodash, and may require more manual optimization and tuning.