Skip to content

Instantly share code, notes, and snippets.

@avidreder
Created February 17, 2015 17:19
Show Gist options
  • Save avidreder/17680de932074f851002 to your computer and use it in GitHub Desktop.
Save avidreder/17680de932074f851002 to your computer and use it in GitHub Desktop.
Woo
var foo = function (bar){
return function (bar1){
console.log(bar+ ' ' +bar1);
}
}
foo('Hello')('World');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment