Skip to content

Instantly share code, notes, and snippets.

@dsimard
Created September 5, 2011 14:07
Show Gist options
  • Save dsimard/1195071 to your computer and use it in GitHub Desktop.
Save dsimard/1195071 to your computer and use it in GitHub Desktop.
Long form namespaces
var Animal = {
Dog : {/* lots of stuff here */},
Cat : {
list : ["Mistigri", "Felix"],
show : function() {
/* This is where it gets long */
console.log(Animal.Cat.list.join());
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment