Question 1
Consider the below javascript program.
var first = 30const obj1 = { first: 50, second: () => { console.log("Value:", this.first); }}
const obj2 = { first: 80, second: function () { console.log("Value:", this.first); this.second(); }}
obj2.second.call(obj1);What will be the output of the program, if executed in a REPL environment?
