Test name | Executions per second |
---|---|
1.1**10 | 7971097.5 Ops/sec |
1.1**100 | 7787884.5 Ops/sec |
1.1**1000 | 7722583.5 Ops/sec |
2**1000 | 7712533.0 Ops/sec |
1.1**10000 | 7642826.5 Ops/sec |
73**10000 | 7584923.5 Ops/sec |
var x = Math.pow(73.123,10023230); | 7555918.5 Ops/sec |
Math.pow(1.000001,10023230); | 7492951.5 Ops/sec |
var x = Math.pow(1.1,10);
var x = Math.pow(1.1,100);
var x = Math.pow(1.1,1000);
var x = Math.pow(2,1000);
var x = Math.pow(1.1,10000);
var x = Math.pow(73,10000);
var x = Math.pow(73.123,10023230);
Math.pow(1.000001,10023230);