What are Objects in JavaScript?
What is Object in JavaScript?
In JavaScript object is a non-primitive data-type that allows you to store multiple collections of data.
Lets have one example
const person = {
name: 'hashnode',
salary: 20
};
console.log(typeof person); // It i...
phani-sai.hashnode.dev3 min read