Skip to content

Instantly share code, notes, and snippets.

@guilhermepontes
Last active July 10, 2023 04:54
Show Gist options
  • Select an option

  • Save guilhermepontes/4504159 to your computer and use it in GitHub Desktop.

Select an option

Save guilhermepontes/4504159 to your computer and use it in GitHub Desktop.
var app = (function(w, d){
var myPrivateVariable = "My private content";
var __private = {
cache : function(){
this.link = d.querySelector('.link-item');
}
bind : function(){
this.link.addEventListener('click', this.handleClick, false);
},
handleClick: function(){
console.log(myPrivateVariable);
}
};
var app = {
init: function(){
console.log(myPrivateVariable);
__private.cache();
__private.bind();
}
};
return app;
})(window, document);
app.init(); //init the app
console.log(myPrivateVariable); // undefined
@3emad
Copy link
Copy Markdown

3emad commented Jan 15, 2013

Thanks for sharing this, its awesome!

@albiere
Copy link
Copy Markdown

albiere commented Mar 8, 2014

I really like this approach!
However, I'd rather improve the public API in this case. Why are the functions "cache" and "bind" public?

What do you think?

@guilhermepontes
Copy link
Copy Markdown
Author

@albiere makes sense. Updated! :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment