Tests:
  • with spread operator

    AخA
     
    const range = (from, to) => {
      const output = []
      for(var x = from; x < to; x++){
        output.push(x)
      }
      return output
    }
    range(0, 10000).reduce((acc, num) => {
      return {
        ...acc,
        [num]: num
      }
    }, {})
  • with mutation

     
    const range = (from, to) => {
      const output = []
      for(var x = from; x < to; x++){
        output.push(x)
      }
      return output
    }
    range(0, 10000).reduce((acc, num) => {
      acc[num] = num
      return acc
    }, {})
  • with object assign

     
    const range = (from, to) => {
      const output = []
      for(var x = from; x < to; x++){
        output.push(x)
      }
      return output
    }
    range(0, 10000).reduce((acc, num) => {
      return Object.assign(acc, {[num]: num})
    }, {})
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    with spread operator
    with mutation
    with object assign

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 13 days ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36
Chrome 134 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
with spread operator 129.5 Ops/sec
with mutation 16887.0 Ops/sec
with object assign 408.1 Ops/sec