Last active
July 4, 2017 21:52
-
-
Save wdiasvargas/480a3d9205f5ac3b8f8ac4ac8f32eaa4 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
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