Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36
Chrome 92
Mac OS X 10.14.5
Desktop
3 years ago
Test name Executions per second
Using the spread operator 2002556.4 Ops/sec
Using Object.assign 5070800.0 Ops/sec
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 = {}
    const secondObject = { sampleData: 'Hello world', moreData: 'foo bar' }
    const finalObject = Object.assign(firstObject, secondObject);