var MyClass = Object.inherit({ constructor: funciton(a) { this.a = a; this.method(); }, method: function() { alert(this.a); } });