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...
Mar 22, 20232 min read59
