π§± Understanding Objects in JavaScript
Introduction: Why Do We Need Objects?
Imagine you want to store information about a person:
Name
Age
City
You could use separate variables:
let name = "Asad";
let age = 22;
let city = "Mars";
Bu
logictech.hashnode.dev3 min read