alert(inc(1)); alert(inc(10)); alert(inc(20)); function inc(N) { this.s=this.s||0; this.s+=N; return this.s; };