class Counter { n = 0; inc() { this.n++; } } const c = new Counter(); const f = c.inc; f(); console.log(c.n);