@SparshX
Backend developer
Nothing here yet.
Nothing here yet.
I was reading the Node.js design patterns book when I came across this section of cycles in module resolution. This is the sample code: Module a.js: exports.loaded = false; var b = require('./b'); module.exports = { bWasLoaded: b.loaded, load...

In the past, I've often gotten confused about what sets encapsulation apart from abstraction. Both seem to be doing some level of information hiding but I never truly got the difference. Also, I often came across the usage of these words in books and...
