Skip to content

Instantly share code, notes, and snippets.

@theroux
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theroux/6e371a36520ad0e3e283 to your computer and use it in GitHub Desktop.
Save theroux/6e371a36520ad0e3e283 to your computer and use it in GitHub Desktop.
Easy app namespace pattern reminder
var arcturus = {
//Private Properties
var prop = true;
//Public Property
arcturus.property = "some string";
//Public Method
arcturus.pubfunc = function() {
console.log( "some message");
};
//Private Method
function privfunc( item ) {
console.log( "some other message");
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment