Tests:
  • reduce + Array.prototype.concat 2lvl

    AخA
     
    var params = [[ 1, 2 ], [ "hello", true, 7 ]];
    var other = params.reduce((acc, val) => acc.concat(val), []);
  • Array.prototype.flat 2lvl

     
    var params = [[1, 2, params], [ "hello", true, 7 ]];
    var other = params.flat(2);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    reduce + Array.prototype.concat 2lvl
    Array.prototype.flat 2lvl

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36
Chrome 95 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
reduce + Array.prototype.concat 2lvl 5818049.5 Ops/sec
Array.prototype.flat 2lvl 941407.1 Ops/sec