Script Preparation code:
AخA
 
this.number = Math.random() * 1000;
Tests:
  • Math.max/min

     
    return Math.max(250, this.number);
  • if

     
    if(this.number < 250) return 250;
    else return this.number;
  • ternary

     
    return this.number < 250 ? 250 : this.number;
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Math.max/min
    if
    ternary

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96.0
Firefox 96 on Windows
View result in a separate tab
Test name Executions per second
Math.max/min 39086808.0 Ops/sec
if 436869728.0 Ops/sec
ternary 437935584.0 Ops/sec