Skip to content

Instantly share code, notes, and snippets.

@stormwild
Forked from guilhermepontes/module-es2015.js
Created January 12, 2013 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stormwild/4518379 to your computer and use it in GitHub Desktop.
Save stormwild/4518379 to your computer and use it in GitHub Desktop.
var app;
app = (function(){
var myPrivateVariable = "my private content";
var application = {
init: function(){
console.log(myPrivateVariable);
},
cache: function() {
// impl
},
bind: function() {
// impl
},
blabla: function(){
// ....
}
}
return application;
})();
app.init(); // > my private content
app.myPrivateVariable // > undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment