fn-expression-vs-statement (v12)

Revision 12 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
Expression
var _fn = function fn() {
 // Some code
}
_fn();
ready
Statement
function fn() {
 // Some code
}
fn();
ready

Revisions

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