Sobes.tech
Back to tasks
Junior — Senior
24

Влияние const и let на изменение полей объекта

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

Укажите, какой вывод появится в консоли после выполнения следующего фрагмента кода:

const constObj = {
  item: "foo",
};

let letObj = {
  item: "bar",
};

constObj.item = "bar";
letObj.item = "foo";

console.log(constObj, letObj);