Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36
Chrome 113
Mac OS X 10.15.7
Desktop
one year ago
Test name Executions per second
Math.min 15216327.0 Ops/sec
if 2096514816.0 Ops/sec
ternary 2099264640.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