Script Preparation code:
AخA
 
var obj = {a: 1, b: 2, c: 3, d: 4}
Tests:
  • for in

     
    for (var x in obj) { console.log(x); }
  • for of

     
    for (var x of Object.keys(obj)) { console.log(x); }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    for in
    for of

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 months ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0
Firefox 134 on Windows
View result in a separate tab
Test name Executions per second
for in 30971.0 Ops/sec
for of 26875.8 Ops/sec