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

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

     
    array.forEach(function(i) {
      array[i] = 1;
    });
  • some

     
    array.some(function(i) {
      array[i] = 1;
    });
  • for..of

     
    for (var i of array) {
      array[i] = 1;
    }
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: 4 years ago)
Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:77.0) Gecko/20100101 Firefox/77.0
Firefox 77 on Ubuntu
View result in a separate tab
Test name Executions per second
for 911707.6 Ops/sec
foreach 1147704.1 Ops/sec
some 1146486.5 Ops/sec
for..of 1021717.9 Ops/sec