Sobes.tech
Back to tasks
Junior — Senior
33

Определение вывода console.log в JavaScript‑фрагменте

Companies where asked:

IT OneIT One
Get help with live coding in real time with Sobes Copilot
Task condition

Укажите, какие значения будут напечатаны функцией console.log в приведённом коде.

let firstObj = { greeting: 'hey' };
let secondObj = firstObj;
firstObj.greeting = 'ho';
console.log(secondObj.greeting);
firstObj = { greeting: 'hello' };
console.log(secondObj.greeting);