Test name | Executions per second |
---|---|
boring | 5686386.0 Ops/sec |
spread | 5028301.0 Ops/sec |
Object.assign | 2770951.0 Ops/sec |
const obj = {
hello: "world"
};
if (Math.random()>.5) {
obj.foo = "bar";
}
const obj = {
hello: "world",
Math.random()>.5 && { foo: "bar" }
};
const obj = Object.assign({
hello: "world"
}, Math.random()>.5 && {
foo: "bar"
});