Script Preparation code:
AخA
 
this.numberA = Math.floor(Math.random() * 2147483648);
this.numberB = Math.floor(Math.random() * 2147483648);
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
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Math.min
    if
    ternary

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 months 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 23824306.0 Ops/sec
if 14796977.0 Ops/sec
ternary 15006822.0 Ops/sec