var obj = {a: 1, b: 2, c: 3, d: 4}
for (var x in obj) { console.log(x); }
for (var x of Object.keys(obj)) { console.log(x); }
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
for in | |
for of |
Test name | Executions per second |
---|---|
for in | 30971.0 Ops/sec |
for of | 26875.8 Ops/sec |
Let's break down the benchmark and explain what is being tested.
What is being tested?
The provided JSON represents two test cases: for in
and for of
. These are both JavaScript loops that iterate over an object, but they differ in their syntax and implementation.
Options being compared
In this benchmark, we have two options:
in
keyword.Pros and Cons
Pros:
in
operator.Cons:
Pros:
Cons:
Object.keys()
to create an array-like object).Library usage
Neither of the two loops uses a dedicated library. Instead, they rely on the built-in JavaScript features.
Special JS feature or syntax
The test case for For...of utilizes the new for...of
loop syntax, which was introduced in ES6. This syntax is not supported by older browsers and may require explicit transpilation or polyfills to run in those environments.
Benchmark preparation code
The provided script preparation code creates a simple object obj
with four properties (a
, b
, c
, and d
). This object serves as the input for both loops, ensuring that they are tested on the same data structure.
Other alternatives
If these two options were not being compared, alternative loop constructs could be used to iterate over objects, such as:
Array.prototype.forEach()
or other array methods to achieve similar results.for...each
loop construct, which is similar to for...in
, but with some additional features.However, in this specific benchmark, the focus is on comparing two distinct loop constructs: for...in
and for...of
.