Test name | Executions per second |
---|---|
Object.assign | 3581822.8 Ops/sec |
spread operator | 1990625.6 Ops/sec |
var params = { b:"hello", c: true, d:7 };
var other = Object.assign({ a: 2 }, params);
var params = { b:"hello", c: true, d:7 };
var other = { a: 2, params };