Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36
Chrome 81
Mac OS X 10.15.4
Desktop
4 years ago
Test name Executions per second
pow 160300.9 Ops/sec
** 7535544.5 Ops/sec
Script Preparation code:
AخA
 
var values = [];
const rand = () => Math.floor(5+Math.random()*10);
for(let i=0; i<50; i++){
   values.push([rand(), rand()]);
}
Tests:
  • pow

     
    values.forEach(x => (Math.pow(x[0], x[1])))
  • **

     
    values.forEach(x => (x[0] ** x[1]))