Test name | Executions per second |
---|---|
1.1**10 | 8457632.0 Ops/sec |
1.1**100 | 8365982.5 Ops/sec |
1.1**1000 | 8353663.0 Ops/sec |
2**1000 | 8379389.0 Ops/sec |
1.1**10000 | 8386998.0 Ops/sec |
73**10000 | 8474376.0 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);