Script Preparation code:
AخA
 
var myArray = [27, 11, 46, 64, 62, 42, 5, 9];
Tests:
  • Spread operator

     
    Math.max(...myArray);
  • Array.prototype.reduce()

     
    myArray.reduce((a, b) => Math.max(a, b))
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Spread operator
    Array.prototype.reduce()

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 7 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36
Chrome 60 on Mac OS X 10.12.6
View result in a separate tab
Test name Executions per second
Spread operator 1442566.1 Ops/sec
Array.prototype.reduce() 566589.4 Ops/sec