Run details:
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
Windows
Desktop
2 years ago
Test name Executions per second
Math.pow 6097201.0 Ops/sec
Multiplication 935486272.0 Ops/sec
Custom 138056688.0 Ops/sec
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);