var obj = function () { this.prop.i++; }; obj.prototype.prop = { i: 0 }; alert(new obj().prop.i); alert(new obj().prop.i);