fn-expression-vs-statement (v11)

Revision 11 of this benchmark created on


Preparation HTML

<script>
var fnExpr;
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
Expression
fnExpr = function() {
 return 42;
}
ready
Statement
function fnStmt() {
 return 42;
}
ready

Revisions

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