Skip to content

Instantly share code, notes, and snippets.

@dsimard
Created September 5, 2011 14:08
Show Gist options
  • Select an option

  • Save dsimard/1195073 to your computer and use it in GitHub Desktop.

Select an option

Save dsimard/1195073 to your computer and use it in GitHub Desktop.
Short form namespaces
var Animal = {
Dog : {/* Lots of stuff here */},
Cat : (function() {
var c = {
list : ["Mistigri", "Felix"],
show : function() {
/* Using the 'c' alias is much shorter */
console.log(c.list.join());
}
}
return c;
})()
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment