function cls (){ this.a = 100; return { getValue:() => this.a } } const o = new cls; console.log(o.getValue());