class Add { constructor() { this.num = 0; } add(val) { return this.num += val; } } const numAdd = new Add(); numAdd.add(1); // 1 numAdd.add(1); // 2