Easy
What will the following code log to the console, and why?
1const obj = {23 a: 10,45 b: function () {67 return this.a + 5;89 },1011};1213const b = obj.b;1415console.log(b());
1const obj = {23 a: 10,45 b: function () {67 return this.a + 5;89 },1011};1213const b = obj.b;1415console.log(b());