Script Preparation code:
AخA
 
this.numberA = Math.random() > .5 || 0;
this.numberB = !this.numberA;
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
  • logical or

     
    return this.numberA || this.numberB
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Math.min
    if
    ternary
    logical or

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one month ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36
Chrome 133 on Windows
View result in a separate tab
Test name Executions per second
Math.min 24825534.0 Ops/sec
if 14729632.0 Ops/sec
ternary 14707881.0 Ops/sec
logical or 21442940.0 Ops/sec