function Class() { this.value = 0 this.f = function() { return this.value++; } } var a = new Class(); alert([a.f(),a.f(),a.f()])