const {called} = new class { count = 0; this.count++; console.log(`Called : ${this.count}`);};called(); // Called : 2