Tests:
  • Using the spread operator

    AخA
     
    const config1= {x:1, y:2};
    const config2= {a:3, b:4};
    const unique = Object.keys(Object.assign({}, config1, config2));
  • Using Object.assign

     
    const config1= {x:1, y:2};
    const config2= {a:3, b:4};
    const unique = Object.keys({...config1, ...config2})
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Using the spread operator
    Using Object.assign

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0
Firefox 110 on Windows
View result in a separate tab
Test name Executions per second
Using the spread operator 8518512.0 Ops/sec
Using Object.assign 6243275.0 Ops/sec