Tests:
  • Using the spread operator with constant inside

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

     
    const firstObject = { __key: "a key", __src: "a src", }
    const secondObject = { moreData: 'foo bar' }
    const finalObject = Object.assign(firstObject, secondObject);
  • Using the spread operator

     
    const firstObject = { __key: "a key",
        __src: "a src", }
    const secondObject = { moreData: 'foo bar' }
    const finalObject = {
        ...secondObject,
        ...firstObject
    };
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Using the spread operator with constant inside
    Using Object.assign
    Using the spread operator

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0
Chrome 120 on Windows
View result in a separate tab
Test name Executions per second
Using the spread operator with constant inside 82493128.0 Ops/sec
Using Object.assign 9045195.0 Ops/sec
Using the spread operator 25963040.0 Ops/sec