// *** before: ***class Counter { constructor() { this.count = 0; } increment() { this.count++; }}// *** in version ES2022: ***class Counter { count = 0; increment() { this.count++; }}