Script Preparation code:
x
 
var arr = [];
const randomizeArray = () => {
    for (let i = 0; i < 50000; i++) {
        arr[i] = Math.floor(Math.random() * 100000);
    }
}
randomizeArray();
Tests:
  • for-in

     
    let dummy = 0;
    for (let j = 0; j < 100; j++){
            for (let i in arr) {
                dummy += i;
            }
    }
  • for-of

     
    let dummy = 0;
    for (let j = 0; j < 100; j++){
            for (let i of arr) {
                dummy += i;
            }
    }
  • native

     
    let dummy = 0;
    for (let j = 0; j < 100; j++){
            for (let i = 0; i < arr.length; i++) {
                dummy += arr[i];
            }
    }
  • native - cache lengh

     
    let dummy = 0;
    for (let j = 0; j < 100; j++){
            let length = arr.length;
            for (let i = 0; i < length; i++) {
                dummy += arr[i];
            }
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    for-in
    for-of
    native
    native - cache lengh

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 5 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36
Chrome 73 on Windows
View result in a separate tab
Test name Executions per second
for-in 1.3 Ops/sec
for-of 227.2 Ops/sec
native 1.8 Ops/sec
native - cache lengh 3.5 Ops/sec