Script Preparation code:
x
 
var arr = [];
  for (var i = 0; i < 1000; i++) {
    arr[i] = i;
  }
  function someFn(ix) {
    return ix * 5;
  }
Tests:
  • while

     
    var l = arr.length;
    while(l--) {
      someFn(arr[l]);
    }
  • for

     
    for (var i = 0; i < arr.length; i++) {
      someFn(arr[i]);
    }
  • for 2

     
    var l = arr.length;
    for (var i = 0; i < l; i++) {
      someFn(arr[i]);
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    while
    for
    for 2

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 7 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36
Chrome 56 on Mac OS X 10.12.1
View result in a separate tab
Test name Executions per second
while 7156.2 Ops/sec
for 4788.5 Ops/sec
for 2 7145.5 Ops/sec