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

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

     
    array.forEach(function(item, index) {
      return item;
    });
  • some

     
    array.some(function(item, index) {
      return item === array[index];
    });
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    for
    foreach
    some

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 5 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.108 Safari/537.36
Chrome 74 on Mac OS X 10.14.4
View result in a separate tab
Test name Executions per second
for 905.4 Ops/sec
foreach 65039.4 Ops/sec
some 65423.8 Ops/sec