Objects
An object is an collection value and key pair.
Creating Objects
we use curley brackets {} or object literal to create object.
ex-let user = {
name: "John",
age: 18
isAdult: true
}
Different Operations perform in objects
Accessing a value
Adding...
lovekush.hashnode.dev2 min read