Skip to content

Instantly share code, notes, and snippets.

@evenchange4
Last active December 11, 2015 15:19
Show Gist options
  • Save evenchange4/4620284 to your computer and use it in GitHub Desktop.
Save evenchange4/4620284 to your computer and use it in GitHub Desktop.
callback function
function invoke_and_add(a,b){
return a()+b();
}
function one(){
return 1;
}
function two(){
return 2;
}
invoke_and_add(one ,two);
@evenchange4
Copy link
Author

return 3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment