Understanding Objects in JavaScript
In JavaScript, we often need to store related information together.
For example, imagine we want to store information about a person:
Name
Age
City
If we store them separately:
let name = "Rahul"
jswithshubham.hashnode.dev4 min read