Script Preparation code:
AخA
 
var array = new Array(100);
var result = []
Tests:
  • for

     
    for (var i = 0; i < array.length; i++) {
      array[i];
    }
  • foreach

     
    array.forEach(function(i) {
      result.push(array[i]);
    });
  • some

     
    array.some(function(i) {
      result.push(array[i]);
    });
  • for..of

     
    for (var i of array) {
      result.push(array[i]);
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    for
    foreach
    some
    for..of

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36
Chrome 86 on Linux
View result in a separate tab
Test name Executions per second
for 64128.6 Ops/sec
foreach 3115551.5 Ops/sec
some 3490478.0 Ops/sec
for..of 41797.7 Ops/sec