Objects in Javascript
What is an object in Javascript?
The object is a data structure that stores data in form of key and value pairs.
const person={
firstName:"Aman",
lastName:"Verma"
}
In the above example, person is an object which contains two pairs of keys and value...
amandevblog.hashnode.dev2 min read