Script Preparation code:
AخA
 
var numbers = Array.from(Array(10000), (_,x) => (Math.random()*x));
Tests:
  • sqrt with Math.pow

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

     
    numbers.forEach(x => x ** 0.5);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    sqrt with Math.pow
    x ** 0.5

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Linux; Android 13) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Mobile Safari/537.36
Chrome Mobile 113 on Android
View result in a separate tab
Test name Executions per second
sqrt with Math.pow 281.8 Ops/sec
x ** 0.5 35428.0 Ops/sec