Tagged Questions
1
vote
2answers
246 views
Go with an object-oriented perspective [duplicate]
My OOP JavaScript question is at the very bottom if you want to skip my introduction.
In an answer to the question Accessing variables from other functions without using global variables, there's a ...
5
votes
2answers
380 views
Please explain object versioning in the nodejs module system
This question is about the persistance of variables across different modules in nodejs when they don't directly "require" each other, but do "require" a common ancestor.
It is also the generalised ...
8
votes
1answer
836 views
JavaScript objects and Crockford's The Good Parts
I've been thinking quite a bit about how to do OOP in JS, especially when it comes to encapsulation and inheritance, recently.
According to Crockford, classical is harmful because of new(), and both ...