Understanding Objects in JavaScript
Why Objects Exist
Imagine storing information about a person using plain variables:
const name = "Aarav";
const age = 25;
const city = "Mumbai";
This works for one person. But what if you have ten p
chetan71.hashnode.dev6 min read