Script Preparation code:
AخA
 
var ppl = []
for(var i=0; i<20000; i++) {
    ppl.push({ id: i, name: i+"" }) 
}
Tests:
  • reduce

     
    var byId = ppl.reduce((stored, current) => ({ ...stored, [current.id]: current }), {});
  • for

     
    var byId = {}
    for(var i=0;i<ppl.length;i++) {
      byId[ppl[i].id] = ppl[i]
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    reduce
    for

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36
Chrome 86 on Windows
View result in a separate tab
Test name Executions per second
reduce 4.0 Ops/sec
for 112.7 Ops/sec