Test name | Executions per second |
---|---|
Math. | 209682736.0 Ops/sec |
Math.pow vs ** vs | 224080480.0 Ops/sec |
Math.pow vs ** | 219669120.0 Ops/sec |
Math.pow vs | 217172000.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);