JavaScript Object and it’s method
JavaScript object is a non-primitive data-type that allows us to store multiple collections of data.
Here is an example of a JavaScript object.
// object
const student = {
firstName: 'ram',
class: 10
};
Here, student is an object that stores...
shekharcodes.hashnode.dev2 min read