Skip to content

Instantly share code, notes, and snippets.

@stanwilsonjr
Created June 17, 2011 18:28
Show Gist options
  • Save stanwilsonjr/1031978 to your computer and use it in GitHub Desktop.
Save stanwilsonjr/1031978 to your computer and use it in GitHub Desktop.
Name spacing Pattern
var objectName = (function(o,$){
var privateVar = "value",
privateObject = { key: "value" };
o.methodOne = function(){
...
};
o.methodTwo = function(){
...
};
return o;
})(objectName || {},jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment