Home / Javascript Tips Generated By ChatGPT / Understanding Objects as Key-Value Pairs in Javascript Store and access data using keys and values. Source Code let person = { name: "John", age: 30, isStudent: false }; console.log(person.name); // "John"