Understanding Objects in JavaScript
Introduction
Imagine you want to store information about a person — their name, age, and city. You could use separate variables:
js
let name = "Armaan";
let age = 21;
let city = "Delhi";
This works f
objectsinjsbyarmaan.hashnode.dev6 min read