Tests:
  • Using the spread operator

    AخA
     
    const obj = { sampleData: 'Hello world' }
    const finalObj = {
        ...obj,
        single: 'foo'
    };
  • Using Object.assign

     
    const obj = { sampleData: 'Hello world' }
    const finalObj = Object.assign(obj, { single: 'foo' });
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: 27 days ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36
Chrome 134 on Windows
View result in a separate tab
Test name Executions per second
Using the spread operator 21273738.0 Ops/sec
Using Object.assign 10832767.0 Ops/sec