Understanding Objects in JavaScript
Imagine you want to store information about a person — their name, age, and city. You could create separate variables:
let name = "John Doe";
let age = 28;
let city = "Lagos";
That works for one per
saurabh-ravte.hashnode.dev4 min read