Understanding Objects in JavaScript
What Are Objects?
You want to store information about a person:
Name: "Alice"
Age: 25
City: "Mumbai"
You could use separate variables:
let name = "Alice";
let age = 25;
let city = "Mumbai";
But
techsorcerer.hashnode.dev8 min read