Property Accessors (dot vs bracket)
Properties can be accessed using dot notation (obj.key) or bracket notation (obj[‘key’]). Bracket notation allows dynamic keys and keys that are not valid identifiers.
const user = { name: "Bob", "favorite color": "blue" };console.log(user.name); // Bobconsole.log(user["favorite color"]); // blue