<script src="https://cdn.jsdelivr.net/lodash/4.16.0/lodash.min.js"></script>
var arrayValue = [{a: 30310}, {b: 100303}, {c: 3040494}]
var objectValue = { a: 30310, b: 100303, c: 3040494}
_.forOwn(objectValue, function(v,i) {})
arrayValue.forEach(function(v,i) {})
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
lodash.each | |
native |
Test name | Executions per second |
---|---|
lodash.each | 7005558.5 Ops/sec |
native | 32661814.0 Ops/sec |
Let's break down the benchmark test and explain what's being tested.
Benchmark Overview
The benchmark compares two approaches to iterate over an object: using Lodash's _.forOwn()
function and the native JavaScript forEach
method.
Options Compared
Pros and Cons
in
or for...in
, which can make code harder to read.Library Used
The Lodash library is used in the benchmark test. Lodash is a popular utility library that provides a wide range of functions for working with JavaScript objects, arrays, and more.
Special JS Feature/Syntax
There are no special JavaScript features or syntax being tested in this benchmark. Both approaches use standard JavaScript methods.
Other Considerations
When choosing between using Lodash's _.forOwn()
and native JavaScript forEach
, consider the following:
forEach
might be a better choice._.forOwn()
can provide a more concise and consistent way to iterate over objects.Alternative Approaches
Other alternatives for iterating over objects or arrays in JavaScript include:
for...in
loop: This approach iterates over object properties using the in
keyword.for...of
loop: This approach is used with array and iterable objects, providing a more concise syntax than forEach
.Array.prototype.forEach()
: This method is similar to native JavaScript forEach
, but it requires creating an array from your object or iterable.Each of these alternatives has its pros and cons, and the choice ultimately depends on the specific requirements of your project.