Created
April 24, 2017 04:09
-
-
Save fxcosta/9e564a860401e373f432805f69efa629 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //-------------------------------------- | |
| // --- 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