Guest User

Untitled

a guest
Apr 22nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. const myModule = (function(_){
  2. var name = "MODULE";
  3. return {
  4. getName: function(){
  5. console.log(_.capitalize(name));
  6. }
  7. };
  8. })(_);
  9.  
  10. console.log(myModule.getName()); // "Module"
Add Comment
Please, Sign In to add comment