<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js"></script>
var obj = Array.from({ length: 10000 }).map((value, i) => i).reduce((val, v) => { val[v] = v; return val; }, {})
_.each(obj, function(v,k) {})
for (const [k, v] of Object.entries(obj)) {}
Object.entries(obj).forEach(function(v, k) {})
const keys = Object.keys(obj);
for (let i = 0; i < keys.length; i++) { const v = obj[keys[i]]; }
const entries = Object.entries(obj);
for (let i = 0; i < entries.length; i++) { const [k, v] = entries[i]; }
const values = Object.values(obj);
for (let i = 0; i < values.length; i++){ }
Object.values(obj).forEach(function(v) {})
for (const prop in obj) { if (obj.hasOwnProperty(prop)) { const v = obj[prop]; } }
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
lodash.each | |
native for-of w/ entries | |
native forEach w/ entries | |
vanilla for-loop w/ Object.keys | |
vanilla for-loop w/ Object.entries | |
vanilla for-loop w/ Object.values (no keys) | |
native forEach w/ Object.values (no keys) | |
native for-in |
Test name | Executions per second |
---|---|
lodash.each | 1000.2 Ops/sec |
native for-of w/ entries | 590.4 Ops/sec |
native forEach w/ entries | 540.7 Ops/sec |
vanilla for-loop w/ Object.keys | 1706.9 Ops/sec |
vanilla for-loop w/ Object.entries | 588.4 Ops/sec |
vanilla for-loop w/ Object.values (no keys) | 13589.8 Ops/sec |
native forEach w/ Object.values (no keys) | 10518.2 Ops/sec |
native for-in | 760.3 Ops/sec |
Let's break down the provided benchmark and explain what is being tested, the different approaches compared, their pros and cons, and other considerations.
Benchmark Overview
The benchmark measures the performance of four different approaches to iterate over an object in JavaScript:
lodash.each
for-of
with Object.entries
(ES6+)forEach
with Object.values
(no keys) (ES5-9)for-loop
with Object.keys
for-loop
with Object.entries
for-loop
with Object.values
(no keys)for-in
Approaches Comparison
Here's a brief overview of each approach and their pros and cons:
lodash.each
each
function.Pros: + Convenient and easy-to-use API + Supports iteration over objects, arrays, and maps
Cons: + Adds extra overhead due to the use of an external library + May not be optimized for performance compared to native implementations
for-of
with Object.entries
for-of
loop.Cons: + Requires support for ES6+ features + May not work in older browsers or environments
forEach
with Object.values
(no keys)forEach
function.Cons: + Requires support for ES5-9 features + May not work in older browsers or environments + Does not provide direct access to key-value pairs
for-loop
with Object.keys
for
loop.Cons:
+ Less efficient than optimized implementations like for-of
or forEach
+ Requires manual indexing and looping
for-loop
with Object.entries
for
loop.Cons:
+ Requires manual indexing and looping
+ Less efficient than optimized implementations like for-of
for-loop
with Object.values
(no keys)for
loop.Cons:
+ Requires manual indexing and looping
+ Less efficient than optimized implementations like forEach
for-in
for-in
loop.Cons:
+ Less efficient than optimized implementations like for-of
or forEach
+ Can be slower due to the use of the in
operator
Performance
The performance results indicate that:
for-of
with Object.entries
is the fastest approach, especially in modern browsers.for-loop
with Object.keys
, Object.values
, or Object.entries
are relatively slow compared to optimized implementations.each
function adds extra overhead and is slower than native implementations.Conclusion
When it comes to iterating over objects in JavaScript, the choice of approach depends on your specific requirements, browser support, and performance considerations. Native for-of
with Object.entries
is generally the best option for modern browsers, while vanilla for-loop
approaches can be used when older browsers or environments are required. Lodash's each
function should be avoided if performance is a priority.