Skip to content

Instantly share code, notes, and snippets.

@mattui
Last active December 10, 2015 22:58
Show Gist options
  • Save mattui/4505787 to your computer and use it in GitHub Desktop.
Save mattui/4505787 to your computer and use it in GitHub Desktop.
(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