Tests:
  • Shift loop

    AخA
     
    const arr = [];
    const ARRAY_SIZE = 5000;
    for (let i = 0; i < ARRAY_SIZE; i++) {
      arr.push(i);
    }
    while(arr.length) {
      let index = arr.shift();
      index++;
    }
  • Unrolled Loop

    x
     
    let arr = [];
    const ARRAY_SIZE = 5000;
    for (let i = 0; i < ARRAY_SIZE; i++) {
      arr.push(i);
    }
    for (let i = 0; i < arr.length; i++) {
      let index = arr[i];
      index++;
    }
    arr = [];
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Shift loop
    Unrolled Loop

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 8 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.113 Safari/537.36
Chrome 53 on Mac OS X 10.10.5
View result in a separate tab
Test name Executions per second
Shift loop 1887.8 Ops/sec
Unrolled Loop 19468.1 Ops/sec