var Obj = function() { } Obj.prototype.SuperFunc = function() { alert("Обьект1"); return this; } var o1 = new Obj(); o1.SuperFunc().SuperFunc().SuperFunc().SuperFunc();