Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36
Chrome 112
Windows
Desktop
one year ago
Test name Executions per second
Math.min 9915947.0 Ops/sec
if 1440987776.0 Ops/sec
ternary 1446193920.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