Home / Javascript Tips Generated By ChatGPT / Accessing Object Properties in Javascript Access properties of an object using dot notation or bracket notation. Source Code console.log(person.name); // Dot notation console.log(person['age']); // Bracket notation