JS and OOP

Benchmark created by devu on


Test runner

Ready to run.

Testing in
TestOps/sec
Closure
(function() {
  console.log("executed 1");
})();
ready
function
function execute() {
  console.log("executed 2");
}

execute();
ready
function ref
execute = function(){
        console.log("executed 3");
}

execute();
ready

Revisions

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