Objects in Javascript
Object is the one of 6 primary types in javascript and most of the things in JS is built on top of Object. It can be constructed in two ways
var obj = {
a : 2
}
var obj = new Object();
obj.key = value;
Then to access the properties we need to use...
biki321.hashnode.dev2 min read