let b = {x:1, y:2}; let a = {x:1, y:2}; console.log (a.x, a.y);
let b = {x:1, y:2}; let a = b; console.log (a.x, a.y);