Test name | Executions per second |
---|---|
Object.assign | 21209232.0 Ops/sec |
Destructuring | 13726364.0 Ops/sec |
const obj = { one: 'one' };
const res = Object.assign(obj, { toString: function() { return this.one; }});
const res = {obj, toString: function() { return this.one; }};