Example :
var mainmodule = {};
mainmodule.newModule = (function() {
var that = this;
this._setup = function() {
// do some setup
};
this._init = function() {
that._setup(); // and do more here
};
return {
init: this._init
}
})();
Note:
use that pattern
private vars with "_" prefix
var mainmodule = {};
mainmodule.newModule = (function() {
var that = this;
this._setup = function() {
// do some setup
};
this._init = function() {
that._setup(); // and do more here
};
return {
init: this._init
}
})();
Note:
use that pattern
private vars with "_" prefix
No comments:
Post a Comment