Consider this code:
let obj1 = {foo : \'bar\'} let obj2 = obj1 obj2.foo = \'asd\' console.log(obj1) // { foo: "asd" } obj2 = null console.log(ob