Tests:
  • Using the spread operator

    AخA
     
    let firstObject = { sampleData: 'Hello world' }
    const secondObject = { moreData: 'foo bar' }
    firstObject = {
        ...firstObject,
        ...secondObject
    };
  • Using Object.assign

     
    let firstObject = { sampleData: 'Hello world' }
    firstObject = Object.assign(firstObject, { moreData: 'foo bar' });
  • add

     
    const firstObject = { sampleData: 'Hello world' }
    firstObject.moreData = 'foo bar'
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
    add

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.96 YaBrowser/20.4.0.3443 Yowser/2.5 Safari/537.36
Yandex Browser 20 on Mac OS X 10.14.6
View result in a separate tab
Test name Executions per second
Using the spread operator 17770806.0 Ops/sec
Using Object.assign 4747118.0 Ops/sec
add 680403520.0 Ops/sec