Skip to content

Instantly share code, notes, and snippets.

@shobhitchittora
Last active April 15, 2018 13:58
Show Gist options
  • Select an option

  • Save shobhitchittora/077ccbcf7a68c5dbfcd46a7e3a42fe9a to your computer and use it in GitHub Desktop.

Select an option

Save shobhitchittora/077ccbcf7a68c5dbfcd46a7e3a42fe9a to your computer and use it in GitHub Desktop.
JD Design Patterns - MODULE - IIFE - mixin
const myModule = (function(_){
var name = "MODULE";
return {
getName: function(){
console.log(_.capitalize(name));
}
};
})(_);
console.log(myModule.getName()); // "Module"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment