Skip to content

Instantly share code, notes, and snippets.

@dcs619
Created August 14, 2014 18:38
Show Gist options
  • Select an option

  • Save dcs619/2f7a954b443e6e2bfd17 to your computer and use it in GitHub Desktop.

Select an option

Save dcs619/2f7a954b443e6e2bfd17 to your computer and use it in GitHub Desktop.
Javascript Object Module Pattern
var member = function(){
var name = 'David';
var age = '24';
var status = 'married';
function createMember(){
// [...]
}
function getMemberDetails(){
// [...]
}
return{
create:createMember,
get:getMemberDetails
}
}();
//member.get() and member.create() now work.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment