Skip to content

Instantly share code, notes, and snippets.

@lmartins
Created June 8, 2014 15:32
Show Gist options
  • Select an option

  • Save lmartins/b1628a00781bc98ad98e to your computer and use it in GitHub Desktop.

Select an option

Save lmartins/b1628a00781bc98ad98e to your computer and use it in GitHub Desktop.
Module Pattern
var Module = (function (){
var publicAPI = {};
var privateMethod = function () {
console.log("Log from the private method");
};
publicAPI.publicMethod = function () {
privateMethod();
};
return publicAPI;
})();
Module.publicMethod();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment