Test name | Executions per second |
---|---|
Using the spread operator | 51952936.0 Ops/sec |
Using Object.assign | 2538281.2 Ops/sec |
const firstObject = { sampleData: 'Hello world' }
const finalObject = {
firstObject
};
const firstObject = { sampleData: 'Hello world' }
const finalObject = Object.assign({}, firstObject);