Skip to content

Instantly share code, notes, and snippets.

@Tombarr
Created January 19, 2019 23:22
Show Gist options
  • Save Tombarr/df82874e9ab7d56f67f27c1a700526d5 to your computer and use it in GitHub Desktop.
Save Tombarr/df82874e9ab7d56f67f27c1a700526d5 to your computer and use it in GitHub Desktop.
Functions as arguments in Javascript
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