Skip to content

Instantly share code, notes, and snippets.

@keesun
Created January 25, 2012 14:13
Show Gist options
  • Select an option

  • Save keesun/1676434 to your computer and use it in GitHub Desktop.

Select an option

Save keesun/1676434 to your computer and use it in GitHub Desktop.
Javascript modules
(function(lab49) {
function privateAdder(n1, n2) {
return n1 + n2;
}
lab49.add = function(n1, n2) {
return privateAdder(n1);
};
})(window.lab49 = window.lab49 || {});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment