Run details:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36
Chrome 123
Linux
Desktop
one year ago
Test name Executions per second
Math.pow 1697.2 Ops/sec
Math.sqrt 1638.2 Ops/sec
Script Preparation code:
AخA
 
var numbers = Array.from(Array(10000), (_,x) => (Math.random()*x));
Tests:
  • Math.pow

     
    numbers.forEach(x => Math.pow(x,0.5));
  • Math.sqrt

     
    numbers.forEach(x => Math.sqrt(x));