Skip to content

Instantly share code, notes, and snippets.

@fxcosta
Created April 24, 2017 04:09
Show Gist options
  • Select an option

  • Save fxcosta/9e564a860401e373f432805f69efa629 to your computer and use it in GitHub Desktop.

Select an option

Save fxcosta/9e564a860401e373f432805f69efa629 to your computer and use it in GitHub Desktop.
//--------------------------------------
// --- ANONYMOUS FUNCTION VERSION --- //
function result (triple) {
return triple(3);
}
result(function (number) {
return number * 3;
});
// OUTPUT: 9
//----------------------------------
// --- NAMED FUNCTION VERSION --- //
function tripleNamedFunction (number) {
return number * 3;
}
result(tripleNamedFunction(3)); // OUTPUT: 9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment