Skip to content

Instantly share code, notes, and snippets.

@mhairston
Created May 11, 2015 20:23
Show Gist options
  • Save mhairston/1ce2f91d433669ff4825 to your computer and use it in GitHub Desktop.
Save mhairston/1ce2f91d433669ff4825 to your computer and use it in GitHub Desktop.
Module Pattern with Private Stuff
// Module pattern
ABC = ABC || {};
ABC.ModuleName = (function() {
function render_donut(el) {
dostuff();
}
function init(){
doinitstuff();
}
// export public methods and properties
return {
init: init
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment