Skip to content

Instantly share code, notes, and snippets.

@seemcat
Created January 8, 2019 08:17
Show Gist options
  • Save seemcat/052859f72ae2de0a9a374fa99292f5b0 to your computer and use it in GitHub Desktop.
Save seemcat/052859f72ae2de0a9a374fa99292f5b0 to your computer and use it in GitHub Desktop.
c0d3 solved in JS
const solution = (num1, num2) => {
return (num3) => {
return num1 + num2 + num3;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment