Skip to content

Instantly share code, notes, and snippets.

@Tinusw
Last active March 22, 2018 15:14
Show Gist options
  • Save Tinusw/e6058afad3253ce6476f1783b4657b68 to your computer and use it in GitHub Desktop.
Save Tinusw/e6058afad3253ce6476f1783b4657b68 to your computer and use it in GitHub Desktop.
function sum(arg1) {
if (arguments.length > 1) {
return arguments[0] + arguments[1];
} else {
return function(arg2) {
return arg1 + arg2;
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment