Script Preparation code:
AخA
 
vartest = test = Array(10000)
        .fill('')
        .map((_, i) => ({ key: 'key' + i, value: 'value' + i }));
Tests:
  • fromEntries

     
    const result = Object.fromEntries(test.map(({ key, value }) => [key, value]));
  • reducer

     
    const result2 = test.reduce((acc, { key, value }) => {
            acc[key] = value;
            return acc;
        }, {});
  • reducer with acc

     
    const result3 = test.reduce((acc, { key, value }) => ({...acc, [key]: value}), {});
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    fromEntries
    reducer
    reducer with acc

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36
Chrome 120 on Linux
View result in a separate tab
Test name Executions per second
fromEntries 816.2 Ops/sec
reducer 2097.2 Ops/sec
reducer with acc 0.1 Ops/sec