Tests:
  • Using the spread operator

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

     
    const firstObject = { sampleData: 'Hello world' };
    const secondObject = { moreData: 'foo bar' };
    const finalObject = Object.assign(firstObject, secondObject);
  • Using Native assignment.

     
    const firstObject = { sampleData: 'Hello world' };
    const secondObject = { moreData: 'foo bar' };
    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
    Using Native assignment.

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 6 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.92 Safari/537.36
Chrome 69 on Mac OS X 10.12.6
View result in a separate tab
Test name Executions per second
Using the spread operator 2381782.8 Ops/sec
Using Object.assign 3596641.8 Ops/sec
Using Native assignment. 352089024.0 Ops/sec