Test name | Executions per second |
---|---|
Math. | 241343872.0 Ops/sec |
Math.pow vs ** vs | 215805856.0 Ops/sec |
Math.pow vs ** | 225993184.0 Ops/sec |
Math.pow vs | 230521248.0 Ops/sec |
var tmp = Math.pow(6, 2);
var tmp = Math.pow(6, 1 / 8);
var tmp = Math.pow(6, 1 / 64);
var tmp = Math.pow(6, 1 / 256);