fn-expression-vs-statement (v9)

Revision 9 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
Expression cache 01
var cached_01 = function() {
 // Some code
};

var fn = cached_01;
ready
Statement
function fn() {
 // Some code
}
ready
Expression cache 02
function cached_02() {
 // Some code
};

var fn = cached_02;
ready

Revisions

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