Understanding Objects in JavaScript
So far, we have looked at simple primitive data types like string, number, and boolean. These types store a single value at a time:
let name = "Rivu";
let age = 21;
let city = "Kolkata";
The Problem:
swapnadip-syntexandstory.hashnode.dev4 min read