const obj = {
  name: "John",
};

let x = obj.name; // x wird to "John"
obj.name = "Jane"; // obj.name wird zu "Jane"