Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save clucasalcantara/e4c113d2a549490bc734cdc02f6351eb to your computer and use it in GitHub Desktop.
Save clucasalcantara/e4c113d2a549490bc734cdc02f6351eb to your computer and use it in GitHub Desktop.
Functional example - High order function
const multiply = (x, y) => x * y
const calculateResult = (fn, x, y) => fn(x,y)
const getSix = calculateResult(multiply, 2, 3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment