Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36
Chrome 104
Mac OS X 10.15.7
Desktop
2 years ago
Test name Executions per second
Math.max 625754.3 Ops/sec
Find 1528388.6 Ops/sec
Script Preparation code:
AخA
 
var arr = [...Array(1000)].map(() => Math.floor(Math.random() * 100000));
Tests:
  • Math.max

     
    return Math.max(...arr);
  • Find

     
    return arr.reduce((maxi, curr) => maxi < curr ? curr : maxi, -1);