Skip to content

Instantly share code, notes, and snippets.

@marciobarrios
Created November 26, 2009 08:52
Show Gist options
  • Save marciobarrios/243332 to your computer and use it in GitHub Desktop.
Save marciobarrios/243332 to your computer and use it in GitHub Desktop.
var DED = function() {
var private_var;
function private_method() {
// do stuff here
}
return {
method_1 : function() {
// do stuff here
},
method_2 : function() {
// do stuff here
}
};
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment