<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) {})
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
lodash.each | |
native |
Test name | Executions per second |
---|---|
lodash.each | 57403780.0 Ops/sec |
native | 127008960.0 Ops/sec |
What is being tested
MeasuringThat.net provides a platform for comparing the performance of different JavaScript microbenchmarks. In this case, two test cases are being compared: lodash.each
and Object.forEach
. The benchmark being measured is the execution time of a loop that iterates over an array using each of these methods.
Options compared
The main options being compared are:
.each
method, which applies a function to each element in an array.forEach
method on arrays in JavaScript, which also applies a function to each element in an array.Pros and Cons
_.each (Lodash)
Pros:
.each
is likely to be optimized for performance.Cons:
Object.forEach (Native JavaScript)
Pros:
forEach
in JavaScript, which means it's typically faster and more efficient than a third-party library.Cons:
.each
, such as handling edge cases or supporting iterators.Other considerations
When choosing between _.each
and Object.forEach
, consider the following factors:
Object.forEach
might be a better choice. However, if you need additional functionality beyond basic iteration, Lodash's .each
might be more suitable.Object.forEach
, while others find it less readable due to its reliance on the array prototype.Library usage
The test case uses Lodash's implementation of .each
. The purpose of this library is to provide a comprehensive set of utility functions for functional programming in JavaScript. In this specific benchmark, it provides an optimized implementation of the .each
method that can be used instead of the native forEach
method.
Special JS feature or syntax
There doesn't appear to be any special JavaScript features or syntax being used in these benchmarks. The tests focus on measuring the performance difference between two common iteration methods.