Back to tasks
EvappsGet help with live coding in real time with Sobes Copilot
Junior — Senior
35
Что покажет консоль после копирования объекта
Companies where asked:
Task condition
Определите, какое значение будет выведено в консоль.
const original = {
name: "John",
age: 30,
address: {
street: "123 Main St",
city: "Anytown",
state: "CA"
}
};
const copyPerson = Object.assign({}, original);
copyPerson.address.city = "Newtown";
console.log(original.address.city);