After learning strings and functions, the next topic I came across was objects.
An object is a way to keep related information together. Instead of creating separate variables for a person's name, age, and city, we can put them inside one object.
const person = {
name: "John",
age: 22






