Skip to content

Instantly share code, notes, and snippets.

@andrewpthorp
Created November 16, 2011 16:51
Show Gist options
  • Save andrewpthorp/1370624 to your computer and use it in GitHub Desktop.
Save andrewpthorp/1370624 to your computer and use it in GitHub Desktop.
JS Namespaces
// Is there a name for this pattern? I would love some resources to read about pros/cons using it.
var FOO = FOO || {};
FOO.ui = {};
FOO.ui.prep_links = function(){
// Some Vars
var _init = function(){
// Do Something
}();
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment