Skip to content

Instantly share code, notes, and snippets.

@wdiasvargas
Last active July 4, 2017 21:52
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 wdiasvargas/480a3d9205f5ac3b8f8ac4ac8f32eaa4 to your computer and use it in GitHub Desktop.
Save wdiasvargas/480a3d9205f5ac3b8f8ac4ac8f32eaa4 to your computer and use it in GitHub Desktop.
const soma = (x, y) => x + y;
const calcular = (fn, x, y) => fn(x, y);
calcular(sum, 1, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment