I want to get rid of local variables in a certain namespace.
Here is the very top of my library where I set up some local objects to hold other objects - Model, View, Controller.
However I'm told there is a way to organize a library without locals to a namespace.
In this post here, the user Raynos says this might be the best way to organize a library. With zero locals to a namespace.
How can I eliminate locals to my library all together?
(function (window, document) {
"use strict";
var Mo = {},
Vi = {},
Co = {},
Su = {};