function foo(a) { this.a = a; } foo.prototype.bar = function () { alert(this.a); }; var obj = new foo('Привет Мир!'); obj.bar();