Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
pow vs exponentiation
Math.pow vs **
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Mobile Safari/537.36
Browser:
Chrome Mobile 139
Operating system:
Android
Device Platform:
Mobile
Date tested:
8 months ago
Test name
Executions per second
Math.pow
1036348.9 Ops/sec
exponentiation
1044412.4 Ops/sec
Explicit multiply
1057353.2 Ops/sec
Tests:
Math.pow
x = Math.pow(71,3)
exponentiation
y = 71 ** 3
Explicit multiply
z = 71 * 71 * 71