Test name | Executions per second |
---|---|
pow | 112927.5 Ops/sec |
** | 5589173.0 Ops/sec |
var values = [];
const rand = () => Math.floor(5+Math.random()*10);
for(let i=0; i<50; i++){
values.push([rand(), rand()]);
}
values.forEach(x => (Math.pow(x[0], x[1])))
values.forEach(x => (x[0] ** x[1]))