Skip to content

Instantly share code, notes, and snippets.

@yetithefoot
Last active September 19, 2016 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save yetithefoot/8d03788c2f4baea79127a24936d99824 to your computer and use it in GitHub Desktop.
Save yetithefoot/8d03788c2f4baea79127a24936d99824 to your computer and use it in GitHub Desktop.
Junior Front-end Developer | Add function
function add(){
// write your one-line implementation here
}
// should prints 7
console.log(add(2,5));
// should prints 7
console.log(add(2)(5));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment