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

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

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

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

     
    for (var i of array) {
      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: 4 years ago)
Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Mobile/15E148 Safari/604.1
Mobile Safari 14 on iOS 14.3
View result in a separate tab
Test name Executions per second
for 297854.4 Ops/sec
foreach 268666.4 Ops/sec
some 259901.7 Ops/sec
for..of 283264.0 Ops/sec