Tests:
  • foreach

    x
     
    const items = Array.from({length: 1000}, () => Math.floor(Math.random() * 40));
    let index = 0;
    items.forEach(i => index++);
  • for-in

     
    const items = Array.from({length: 1000}, () => Math.floor(Math.random() * 40));
    let index = 0;
    const newArray = [];
    for (let i in items) {
        newArray.push(i);
    }
  • for-of

     
    const items = Array.from({length: 1000}, () => Math.floor(Math.random() * 40));
    let index = 0;
    const newArray = [];
    for (let i of items) {
        newArray.push(i);
    }
  • for

     
    const items = Array.from({length: 1000}, () => Math.floor(Math.random() * 40));
    let index = 0;
    const newArray = [];
    for(let i = 0; i < items.length; ++i) {
      newArray.push(items[i]);
    }
  • optimized-for

     
    const items = Array.from({length: 1000}, () => Math.floor(Math.random() * 40));
    let index = 0;
    const newArray = [];
    for(let i = items.length; i > 0; --i) {
      newArray.push(items[i]);
    }
  • reduce

     
    const items = Array.from({length: 1000}, () => Math.floor(Math.random() * 40));
    items.reduce((acc,value) => {
        acc.push(value);
        return acc;
    }, new Array());
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    foreach
    for-in
    for-of
    for
    optimized-for
    reduce

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 7 months ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36
Chrome 128 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
foreach 3391.0 Ops/sec
for-in 3349.0 Ops/sec
for-of 3502.1 Ops/sec
for 3526.9 Ops/sec
optimized-for 3528.1 Ops/sec
reduce 3433.5 Ops/sec