var obj = {
'a': 1,
'b': 1,
'c': 1,
'd': 1,
'e': 1,
'f': 1,
'g': 1
};
for (var key in obj) {
console.log(key);
}
const keys = Object.keys(obj)
for(let i= 0; i< keys.length; i++){
console.log(keys[i])
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
for-in | |
Object.keys |
Test name | Executions per second |
---|---|
for-in | 32170.3 Ops/sec |
Object.keys | 32566.2 Ops/sec |
Let's break down what is being tested in this benchmark.
Benchmark Definition
The benchmark compares the performance of two approaches to iterate over an object:
for-in
loopObject.keys()
method and iterating over its result using a traditional for
loop.Options Compared
for-in
loop: This approach uses the in
operator to iterate over the object's property names.Object.keys()
method to get an array of the object's property names, and then iterates over this array using a traditional for
loop.Pros and Cons
for-in
loops can iterate over inherited properties, which might not be desirable in all cases.for-in
loop, as it avoids iterating over inherited properties and uses array indexing (which is typically faster).Object.keys()
, which can be a concern for large objects.Library/Functionality
Object.keys()
method: This is a built-in JavaScript function that returns an array of the object's property names. It was introduced in ECMAScript 2015 (ES6).Special JS Features/Syntax
None mentioned explicitly, but keep in mind that both approaches work on modern browsers and most JavaScript environments.
Other Alternatives
for...in
with the Object.getOwnPropertyNames()
method instead of Object.keys()
. This would iterate over both own properties and inherited ones.keys()
function or Underscore.js's keys()
function, which might provide additional functionality or optimizations.In summary, this benchmark is testing two approaches to iterate over an object: the traditional for-in
loop and using the Object.keys()
method with a traditional for loop. The results will show which approach performs better in terms of execution speed.