fn-expression-vs-statement (v25)

Revision 25 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
Statement
var i = 0;
var j = 0;
function fns() {
  i++;
}
ready
Expression
var i = 0;
var j = 0;
var fn = function fn1() {
  i++;
}
ready

Revisions

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