Skip to content

Instantly share code, notes, and snippets.

@paulruescher
Last active December 4, 2015 23:02
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 paulruescher/ef370d1bccf9f2b7c255 to your computer and use it in GitHub Desktop.
Save paulruescher/ef370d1bccf9f2b7c255 to your computer and use it in GitHub Desktop.
function f(x) {
return x * 10;
}
function g(x) {
return x + 2;
}
f(g(2)); // 40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment