Multiplying Floats

Benchmark created on


Preparation HTML

<script>
  var max_it = 10000;
  var it = 0;
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
multiply first
while (it < max_it) {
 it += 1;
}
ready
multiply after
while (true) {
 it += 1;
 if (it > max_it) {
  break;
 }
}
ready

Revisions

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