function MyClass() { this.canWalk = true; } MyClass.prototype.Module1 = function() { alert( 'Привет' ); }; var animal = new MyClass(); animal.Module1();