Math.max/min vs if vs ternary operator 232323
Date tested:
3 years ago
User agent:
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96.0
Test name
Executions per second
Math.max/min
39086808.0 Ops/sec
if
436869728.0 Ops/sec
ternary
437935584.0 Ops/sec
Benchmark definition (click to collapse):
Script Preparation code:
this.number = Math.random() * 1000;
Tests:
Math.max/min
return Math.max(250, this.number);
if
if(this.number < 250) return 250; else return this.number;
ternary
return this.number < 250 ? 250 : this.number;
Open this result on MeasureThat.net