fn-expression-vs-statement (v14)

Revision 14 of this benchmark created by JP on


Test runner

Ready to run.

Testing in
TestOps/sec
Expression
(function() {
 function fn() { return 1; }
 fn();
})();
ready
Statement
(function() {
 var fn = function () { return 1; }
 fn();
})();
ready

Revisions

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