Run details:
Mozilla/5.0 (Linux; Android 12) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Mobile Safari/537.36
Chrome Mobile 99
Android
Mobile
3 years ago
Test name Executions per second
Using the spread operator 51952936.0 Ops/sec
Using Object.assign 2538281.2 Ops/sec
Tests:
  • Using the spread operator

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

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