Tests:
  • Using the spread operator

    AخA
     
    const firstObject = { a: 0, b: 0 }
    const secondObject = { a: 1, b: 1 }
    const finalObject = {
        ...firstObject,
        ...secondObject
    };
  • Using Object.assign

     
    const firstObject = { a: 0, b: 0 }
    const secondObject = { a: 1, b: 1 }
    const finalObject = Object.assign(firstObject, secondObject);
  • Assigning directly

     
    let firstObject = { a: 0, b: 0 }
    const secondObject = { a: 1, b: 1 }
    finalObject = { a: secondObject.a, b: secondObject.b };
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
    Assigning directly

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36
Chrome 110 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
Using the spread operator 33848760.0 Ops/sec
Using Object.assign 12061515.0 Ops/sec
Assigning directly 12433881.0 Ops/sec