HTML Preparation code:
AخA
 
1
<!--your preparation HTML code goes here-->
Script Preparation code:
x
 
var array = new Array(1000);
let count = 1000;
function print(i) {
    console.log(array[i]);
}
Tests:
  • For

     
    for (var i = 0; i < count; i++) {
      console.log(array[i]);
    }
  • For (with function call)

     
    for (var i = 0; i < count; i++) {
      print(i);
    }
  • For Each (function)

     
    array.forEach(print)
  • For Each (trivial lambda)

     
    array.forEach((i) => print(i))
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    For
    For (with function call)
    For Each (function)
    For Each (trivial lambda)

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 days ago)
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36
Chrome 134 on Linux
View result in a separate tab
Test name Executions per second
For 547.7 Ops/sec
For (with function call) 515.7 Ops/sec
For Each (function) 1331068.6 Ops/sec
For Each (trivial lambda) 1326592.9 Ops/sec