multiply vs division

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
mult
for (let i = 0; i < 100000; i++) {
	i * 0.5;
}
ready
div
for (let i = 0; i < 100000; i++) {
	i / 2;
}
ready

Revisions

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