Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/114.0
Firefox 114
Mac OS X 10.15
Desktop
one year ago
Test name Executions per second
Math.min 30116358.0 Ops/sec
if 631128448.0 Ops/sec
ternary 689530304.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