Tests:
  • Using the spread operator

    x
     
    const firstObject = { sampleData: 'Hello world' }
    const finalObject = {
        ...firstObject
    };
  • Using Object.assign

     
    const firstObject = { sampleData: 'Hello world' }
    const finalObject = Object.assign(firstObject);
  • Using mutation

     
    const firstObject = { sampleData: 'Hello world' }
    const finalObject = { sampleData: firstObject.sampleData }
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 mutation

    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/106.0.0.0 YaBrowser/22.11.3.823 Yowser/2.5 Safari/537.36
Yandex Browser 22 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
Using the spread operator 141882640.0 Ops/sec
Using Object.assign 11884886.0 Ops/sec
Using mutation 1021811072.0 Ops/sec