Prototype vs. this (v55)

Revision 55 of this benchmark created by Waqar Khan on


Setup

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

Test runner

Ready to run.

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

Revisions

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