fn-expression-vs-statement (v13)

Revision 13 of this benchmark created on


Test runner

Ready to run.

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

Revisions

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