Prototype vs Module pattern performance (v241)

Revision 241 of this benchmark created on


Setup

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

Test runner

Ready to run.

Testing in
TestOps/sec
Prototypal
var i = 1000,
    objs = [];
while (i--) {
  var o = new Klass1();
  objs.push(new Klass1());
  o.bar;
  o.foo;
}
ready
Module pattern
var i = 1000,
    objs = [];
while (i--) {
  var o = new Klass2();
  objs.push(new Klass2());
  o.bar;
  o.foo;
}
ready
Module pattern with cached functions
var i = 1000,
    objs = [];
while (i--) {
  var o = new Klass3();
  objs.push(new Klass3());
  o.bar;
  o.foo;
}
ready
Module pattern and closures
var i = 1000,
    objs = [];
while (i--) {
  var o = new Klass4();
  objs.push(new Klass4());
  o.bar;
  o.foo;
}
ready
Module pattern with closures and self called function
var i = 1000,
    objs = [];
while (i--) {
  var o = new Klass5();
  objs.push(new Klass5());
  o.bar;
  o.foo;
}
ready

Revisions

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