Skip to content

Instantly share code, notes, and snippets.

@yagopv
Created November 15, 2012 08:33
Show Gist options
  • Save yagopv/4077405 to your computer and use it in GitHub Desktop.
Save yagopv/4077405 to your computer and use it in GitHub Desktop.
Javascript patterns. Module
(function(MyApp) {
// private vars and methods
var myprivatevar = true
_myprivatemethod = function() {};
// public methods
MyApp.mypublicmethod = _myprivatemethod();
})(window.MyApp = window.MyApp || { });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment