I want to create a global namespace for my application and in that namespace I want other namespaces:
E.g.
Dashboard.Ajax.Post() Dashboard.RetrieveC
bob.js can help in defining your namespaces (among others):
bob.ns.setNs('Dashboard.Ajax', { Post: function () { /*...*/ } }); bob.ns.setNs('Dashboard.RetrieveContent', { RefreshSalespersonPerformanceContent: function () { /*...*/ } });