Test name | Executions per second |
---|---|
with spread operator | 218507.7 Ops/sec |
with mutation | 2739264.5 Ops/sec |
with object assign | 212606.5 Ops/sec |
with new object assign | 106038.5 Ops/sec |
foreach | 2500987.0 Ops/sec |
var range = (from, to) => {
const output = []
for (var x = from; x < to; x++) {
output.push(x)
}
return output
}
range(0, 10).reduce((acc, num) => {
return {
acc,
[num]: num
}
}, {})
range(0, 10).reduce((acc, num) => {
acc[num] = num
return acc
}, {})
range(0, 10).reduce((acc, num) => {
return Object.assign(acc, {[num]: num})
}, {})
range(0, 10).reduce((acc, num) => {
return Object.assign({}, acc, {[num]: num})
}, {})
const output = {};
range(0, 10).forEach((num) => {
output[num] = num;
});