Script Preparation code:
AخA
 
var arrRandom = [];
for(var intCtr=0; intCtr<1000; intCtr++) {
  arrRandom.push(Math.floor(Math.random() * Math.floor(10000)));
}
Tests:
  • for

     
    const newArr = [];
    for (const v of arrRandom) {
      newArr.push(v);
    }
  • reducer

     
    arrRandom.reduce((arr, item, i) => {
      arr[i] = item;
      return arr;
    }, []);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    for
    reducer

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36
Chrome 93 on Windows
View result in a separate tab
Test name Executions per second
for 97610.7 Ops/sec
reducer 97442.0 Ops/sec