Quote Originally Posted by szlamany View Post
Internally I have a lot of classes that manage operations. So things are easy to find because I follow good OOP techniques.
See that's the thing. In VB.Net I can organize large apps into classes with similar functionality grouped together. I even use folders as a grouping when there are too many class files so everything is neatly organized into a hierarchical manner which makes it quite easy to find specific things. But JavaScript as far as I know doesn't allow you to define classes. Sure you can create objects with its duck typing capability but statically defined classes provides a measure of order to code.