Prototype vs. this (v16)

Revision 16 of this benchmark created on


Setup

var WidgetNS=(function(){
    function Widget() {}
    
    Widget.prototype.myMethod = function(i) {
      if (i == 20000) {
        console.log('Hey T!');
      }
    };
     return {Widget:Widget};
     
    })();
    
    
    function Tt() {
      this.myMethod = function(i) {
        if (i == 20000) {
          console.log('Hey Tt!');
        }
      };
    }

Test runner

Ready to run.

Testing in
TestOps/sec
Using prototype
for (var i = 1; i <= 20000; i++) {
  var x = new WidgetNS.Widget();
  x.myMethod(i);
}
ready
Using this
for (var i = 1; i <= 20000; i++) {
  var x = new Tt();
  x.myMethod(i);
}
ready

Revisions

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