(function(){ function T1() { this.rep = {}; } T1.prototype.add = function(name, val) { this.rep[name] = val; } T1.prototype.get = function() { return this.rep[name]; } var myT = new T1(); myT.add('q', 1); })()