Question 23
Consider the following Script embedded in an HTML document.
let Obj1 = { subject:'Mechanics', stream:'Physics'}
let Obj2 = Obj1;let Obj3 = {};
for (let key in Obj1){ Obj3[key] = Obj1[key];}
Obj2.subject = 'Thermodynamics'Obj3.stream = 'Chemistry'
console.log(Obj1)What will be the output on console, if the HTML document is rendered using a browser?