Tests:
  • Array.prototype.concat

    AخA
     
    let array = [{'optionA': 1}, {'optionB': 2}, {'optionC': 3}];
    return array.concat([{'optionD': 4}, {'optionE': 5}]);
  • spread operator

     
    let array = [{'optionA': 1}, {'optionB': 2}, {'optionC': 3}];
    return [...array, {'optionD': 4}, {'optionE': 5}];
  • Push

     
    let array = [{'optionA': 1}, {'optionB': 2}, {'optionC': 3}];
    array.push([{'optionD': 4}, {'optionE': 5}]);
    return array;
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Array.prototype.concat
    spread operator
    Push

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.84 Safari/537.36
Chrome 85 on Windows
View result in a separate tab
Test name Executions per second
Array.prototype.concat 2027052.9 Ops/sec
spread operator 7062876.0 Ops/sec
Push 10358444.0 Ops/sec