mult vs exp

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
exp 2
const r = 67
const z = r ** 2
ready
mult 2
const r = 67
const z = r * r
ready
exp 3
const r = 67
const z = r ** 3
ready
mult 3
const r = 67
const z = r * r * r
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.