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, 30000).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, 30000).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, 30000).reduce((acc, num) => {
      return Object.assign(acc, {[num]: num})
    }, {})
  • with for...of loop

    x
     
    const range = (from, to) => {
      const output = []
      for(var x = from; x < to; x++){
        output.push(x)
      }
      return output
    }
    const items = range(0, 30000);
    let result = {};
    for(let item of items) {
      result[item] = item;
    }
  • with for loop

     
    const range = (from, to) => {
      const output = []
      for(var x = from; x < to; x++){
        output.push(x)
      }
      return output
    }
    const items = range(0, 30000);
    let result = {};
    for(let i = 0; i < items.length; i += 1) {
      result[items[i]] = items[i];
    }
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
    with for...of loop
    with for loop

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36
Chrome 120 on Windows
View result in a separate tab
Test name Executions per second
with spread operator 0.7 Ops/sec
with mutation 741.3 Ops/sec
with object assign 25.5 Ops/sec
with for...of loop 1132.7 Ops/sec
with for loop 1206.1 Ops/sec