Tests:
  • Math.pow

    AخA
     
    Math.pow(54, 2);
  • Multiplication

     
    54*54
  • Custom

     
    function pow(x, y){
      let result = x;
      while(y){
        y--;
        result*=x;
      }
    }
    pow(54, 2);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Math.pow
    Multiplication
    Custom

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36
Chrome 106 on Windows
View result in a separate tab
Test name Executions per second
Math.pow 6097201.0 Ops/sec
Multiplication 935486272.0 Ops/sec
Custom 138056688.0 Ops/sec