Math.max vs ternary (patched)
Date tested:
2 years ago
User agent:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36
Test name
Executions per second
Math.max
2125422.0 Ops/sec
ternary
391360256.0 Ops/sec
Benchmark definition (click to collapse):
Script Preparation code:
this.number = Math.random() * 1000
Tests:
Math.max
return Math.max(501, this.number)
ternary
return this.number >= 501 ? this.number : 501
Open this result on MeasureThat.net