Guest User

Untitled

a guest
Dec 16th, 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. var a = (function(){
  2. var some = function(aa) {
  3. aa + 10;
  4. }
  5. var init = function(aa) {
  6. some(aa);
  7. }
  8. return {
  9. init : init
  10. }
  11. })();
  12.  
  13. console.log(a.init(5));
Add Comment
Please, Sign In to add comment