var obj = {
'a': {
id: 'a',
num: 1
},
'b': {
id: 'b',
num: 1
},
'c': {
id: 'c',
num: 1
},
'd': {
id: 'd',
num: 1
},
'e': {
id: 'e',
num: 1
},
'f': {
id: 'f',
num: 1
},
'g': {
id: 'g',
num: 1
},
};
for (var i=10000; i > 0; i--) {
var output = []
for (var key in obj) {
output.push(obj[key]);
}
console.log(output)
}
for (var i=10000; i > 0; i--) {
var output = Object.keys(obj).map(key => obj[key]);
console.log(output)
}
for (var i=10000; i > 0; i--) {
var output = Object.values(obj);
console.log(output)
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
for-in | |
Object.keys | |
Object.values |
Test name | Executions per second |
---|---|
for-in | 22.2 Ops/sec |
Object.keys | 21.9 Ops/sec |
Object.values | 22.6 Ops/sec |
Let's dive into the explanation of the provided benchmark.
Benchmark Overview
The benchmark is designed to compare the performance of three different approaches for iterating over an object in JavaScript:
for-in
Object.keys()
Object.values()
Each approach has its own pros and cons, which will be discussed below.
Script Preparation Code
The script preparation code defines a single object obj
with six properties, each containing an id
and a num
value. This object is used as the input for the benchmarking tests.
Benchmark Definition json
The benchmark definition JSON contains three test cases:
for-in
loop to iterate over the object's properties. The loop pushes each property value to an output array.Object.keys()
method to get an array of the object's property names, which are then mapped to their corresponding values using the spread operator (obj[key]
).Object.values()
method to get an array of the object's property values directly.Other Considerations
RawUAString
field contains information about the browser's User Agent string, which may be useful for identifying specific browsers or platforms.Pros and Cons of each approach
Library and Syntax Considerations
None of the test cases explicitly use any external libraries or syntax features. However, it's worth noting that Object.keys()
and Object.values()
were introduced in ECMAScript 2015 (ES6) and are widely supported by modern browsers.
Alternatives
Other approaches for iterating over objects include:
forEach
loop with the in
operatorfor...of
loop with an iterator objectHowever, these alternatives may not be as widely supported or efficient as the three test cases in this benchmark.