const a = 7; function b(){ let a = 10; let obj = { a: 11, printA: () => { console.log(this.a); } }; obj.printA(); } b();