Tests:
  • assignation

    x
     
    const emptyObject = { a : '-', b :'-' }
    const mainObject = { a : 'aylmao', b :'brrrr' }
    mainObject.a = emptyObject.a;
    mainObject.b = emptyObject.b;
  • object.assign

     
    const emptyObject = { a : '-', b :'-' };
    const mainObject = { a : 'aylmao', b :'brrrr' };
    Object.assign(mainObject, emptyObject);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    assignation
    object.assign

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36
Chrome 101 on Windows
View result in a separate tab
Test name Executions per second
assignation 769894784.0 Ops/sec
object.assign 5247464.5 Ops/sec