Skip to content

Instantly share code, notes, and snippets.

@sebastibe
Created January 9, 2013 05:25
Show Gist options
  • Save sebastibe/4490855 to your computer and use it in GitHub Desktop.
Save sebastibe/4490855 to your computer and use it in GitHub Desktop.
The pattern known as module of Addy Osmani.
var Module = (function() {
var privateMember = "secret";
return {
publicMember: function() {
return privateMember;
}
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment