Tests:
  • Using the spread operator

    AخA
     
    const firstObject = { sampleData: 'Hello world' }
    const finalObject = {
        ...firstObject,
        ...{ moreData: 'foo bar' }
    };
  • Using single item addition.

     
    const firstObject = { sampleData: 'Hello world' }
    const finalObject = {
        ...firstObject,
        moreData: 'foo bar',
    };
  • using object assign

     
    const firstObject = { sampleData: 'Hello world' }
    const secondObject = { moreData: 'foo bar' }
    const finalObject =  Object.assign(firstObject, secondObject)
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Using the spread operator
    Using single item addition.
    using object assign

    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/85.0.4183.121 Safari/537.36
Chrome 85 on Mac OS X 10.14.6
View result in a separate tab
Test name Executions per second
Using the spread operator 2352355.0 Ops/sec
Using single item addition. 2312239.8 Ops/sec
using object assign 6520425.5 Ops/sec