Math.pow vs Bitwise (v5)

Revision 5 of this benchmark created on


Preparation HTML

<script>
  var a = 5.1,
      b = 3.5,
      c = 0,
      Pow = Math.pow;
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
Math.pow
c = Pow(a, b);
ready
Bitwise
c = a << b;
ready

Revisions

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