Script Preparation code:
AخA
 
var params = (new Array(250)).fill(Math.random());
var other = (new Array(500)).fill(Math.random());
Tests:
  • Concat

     
    params.concat(other);
  • Spread

     
    [...params, ...other];
  • Push

     
    params.push(...other);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Concat
    Spread
    Push

    Fastest: N/A

    Slowest: N/A

Latest run results:

No previous run results

This benchmark does not have any results yet. Be the first one to run it!