Test case details

Preparation Code

function T() {       this.name = 'T';     }         T.prototype.myMethod = function(i) {       if (i == 20000) {         console.log('Hey ' + this.name);       }     };         function Tt() {       this.name = 'Tt';       this.myMethod = function(i) {         if (i == 20000) {           console.log('Hey ' + this.name);         }       };     }

Test cases

Test #1

 var t = new T();  for (var i = 1; i <= 20000; i++) {    t.myMethod(i);  }

Test #2

var tt = new Tt(); for (var i = 1; i <= 20000; i++) {   tt.myMethod(i); }