Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
Bitwise vs pow
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36
Browser:
Chrome 137
Operating system:
Windows
Device Platform:
Desktop
Date tested:
10 months ago
Test name
Executions per second
Math.pow
155381856.0 Ops/sec
Operand pow
156317184.0 Ops/sec
Bitwise pow
158823904.0 Ops/sec
Tests:
Math.pow
const val = Math.pow(2, 12)
Operand pow
const val = 2 ** 12
Bitwise pow
const val = (1 << 12)