Math.max.apply vs Math.max spread
Compare the new ES6 spread operator with the Math.max.apply method
Date tested:
2 years ago
User agent:
Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36
Test name
Executions per second
Max with apply
787.6 Ops/sec
Max with spread operator
792.2 Ops/sec
Benchmark definition (click to collapse):
Script Preparation code:
var arr = [] for (i = 0; i < 100000; i++) { arr.push(Math.random() * i) }
Tests:
Max with apply
Math.max.apply(Math, arr)
Max with spread operator
Math.max(...arr)
Open this result on MeasureThat.net