Test name | Executions per second |
---|---|
Using the spread operator | 83125040.0 Ops/sec |
Using Object.assign | 7114264.0 Ops/sec |
const secondObject = {sampleData: 'Hello world', moreData: 'foo bar' }
const finalObject = {
secondObject
};
const secondObject = {sampleData: 'Hello world', moreData: 'foo bar' }
const finalObject = Object.assign({}, secondObject);