Skip to content

Instantly share code, notes, and snippets.

@zonayedpca
Created March 24, 2018 03:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zonayedpca/27e98766d1cd764335e179e14a1f3751 to your computer and use it in GitHub Desktop.
Save zonayedpca/27e98766d1cd764335e179e14a1f3751 to your computer and use it in GitHub Desktop.
First Class Functions
function welcomeMsg(name) {
console.log('Welcome Mr. ' + name);
return function options(menu) {
console.log('Do you like ' + menu + ' Mr. ' + name);
}
}
welcomeMsg('Zonayed Ahmed')('Coffee');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment