Namespaces Abstracted
Prerequisites
Objects in Javascript
Take a look at this piece of code
const lion = {
sound: function () {
console.log("roar");
},
};
const parrot = {
sound: function () {
console.log("hello!");
},
};
lion.sound(); // roar
parrot...
justmyahia.hashnode.dev2 min read