Question 6
Consider the below JavaScript program.
const a = 15;
const obj1 = { a: 20, b: function () { console.log(this.a); this.b(); }}
const obj2 = { a: 10, b: () => { console.log(this.a); }}
obj1.b.apply(obj2);What will be the output of the above program, if executed?