Function calls test test (v3)

Revision 3 of this benchmark created on


Preparation HTML

<script>
  var fn = function(a, b) {
  return a + b;
  };
  
  var emptyFn = function() {};
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
function
var c = fn(999,1000);
ready
no function
var  a = 999, b = 1000, c = a + b;
ready
empty fn
emptyFn();
ready
just call
fn();
ready

Revisions

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