Prototype vs Module pattern performance (v98)

Revision 98 of this benchmark created on


Setup

function Klass1() {}
    Klass1.prototype.foo = function() {
      log('foo');
    }
    Klass1.prototype.bar = function() {
      log('bar');
    }
    
    function Klass2() {
      var foo = function() {
            log('foo');
          },
          bar = function() {
            log('bar');
          };
    
      return {foo: foo, bar: bar}
    }
    
    
    var FooFunction = function() {
      log('foo');
    };
    var BarFunction = function() {
      log('bar');
    };
    
    function Klass3() {
      return {foo: FooFunction, bar: BarFunction}
    }

Test runner

Ready to run.

Testing in
TestOps/sec
Prototypal
  var o = new Klass1()
 
ready
Module pattern
  var o = Klass2()
 
ready
Module pattern with cached functions
  var o = new Klass3()
 
ready

Revisions

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