Sobes.tech
Back to tasks
Junior — Senior
35

Что покажет консоль после копирования объекта

Companies where asked:

EvappsEvapps
Get help with live coding in real time with Sobes Copilot
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);