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, 10).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, 10).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, 10).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: 4 days ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36
Chrome 135 on Windows
View result in a separate tab
Test name Executions per second
with spread operator 2217563.8 Ops/sec
with mutation 10999857.0 Ops/sec
with object assign 544825.1 Ops/sec