Math.max vs ternary
Date tested:
one year ago
User agent:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 YaBrowser/23.1.2.980 Yowser/2.5 Safari/537.36
Test name
Executions per second
Math.max
11766437.0 Ops/sec
ternary
1017083136.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 : 0
Open this result on MeasureThat.net