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