Created
January 19, 2019 23:22
-
-
Save Tombarr/df82874e9ab7d56f67f27c1a700526d5 to your computer and use it in GitHub Desktop.
Functions as arguments in Javascript
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
const addTen = (x) => x + 10; | |
const doAThingToX = (thing, x) => thing(x); | |
doAThingToX(addTen, 10); // 20 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment