Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36 OPR/94.0.0.0
Opera 94
Windows
Desktop
one year ago
Test name Executions per second
Math.min 10446900.0 Ops/sec
if 1221929216.0 Ops/sec
ternary 1200814848.0 Ops/sec
Script Preparation code:
AخA
 
this.numberA = Math.random() * 1000;
this.numberB = Math.random() * 1000;
Tests:
  • Math.min

     
    return Math.min(this.numberA, this.numberB);
  • if

     
    if (this.numberA < this.numberB)
      return this.numberA;
    else
      return this.numberB;
  • ternary

     
    return (this.numberA < this.numberB) ? this.numberA : this.numberB