fn-expression-vs-statement (v10)

Revision 10 of this benchmark created on


Preparation HTML

<script>
var fnExpr = function() {
 return 42;
}
function fnStmt() {
 return 42;
}
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
Expression
fnExpr();
ready
Statement
fnStmt();
ready

Revisions

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