<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js"></script>
var obj = Array.from({ length: 1000 }).map((value, i) => i).reduce((val, v) => { val[v] = v; return val; }, {})
_.each(obj, function(v, k) {
console.log(v, k);
});
_.forOwn(obj, function(v, k) {
console.log(v, k);
});
Object.keys(obj).forEach(function (k) {
let v = obj[k];
console.log(v, k);
});
for (const k in obj) {
if (obj.hasOwnProperty(k)) {
let v = obj[k];
console.log(v, k);
}
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
lodash.each | |
lodash.forOwn | |
Object.keys().forEach | |
for..in |
Test name | Executions per second |
---|---|
lodash.each | 134.2 Ops/sec |
lodash.forOwn | 130.8 Ops/sec |
Object.keys().forEach | 146.4 Ops/sec |
for..in | 154.0 Ops/sec |
Overview of the Benchmark
The provided JSON represents a JavaScript benchmarking test case on MeasureThat.net. The test compares the performance of different approaches for iterating over an object: lodash.forOwn
, Object.keys().forEach
, and for..in
. Additionally, it uses the Lodash library to define a custom function _each
and _forOwn
.
Options Compared
The benchmark tests the following options:
Object.keys()
to get an array of the object's property names and then calls the provided callback function on each one, effectively iterating over the object's properties.Pros and Cons of Each Approach
Object.keys()
.Library Used: Lodash
Lodash is a popular utility library for JavaScript that provides various functions for tasks such as array manipulation, object iteration, and more. In this benchmark, Lodash is used to define two custom functions:
_each
: Iterates over an object using its own internal implementation._forOwn
: Iterates over an object using its own internal implementation.Special JavaScript Feature or Syntax
None of the tested approaches use any special JavaScript features or syntax.
Alternatives
Other alternatives for iterating over objects in JavaScript include:
Array.prototype.forEach
on an array representation of the object.in
and hasOwnProperty
.for...of
or reduce()
.However, these alternatives may not be suitable for this specific benchmark due to their potential performance overhead or limitations in certain edge cases.