Skip to content

Instantly share code, notes, and snippets.

@Arieg419
Last active December 3, 2017 10:42
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 Arieg419/1827f4cb72231264180d575526bc9032 to your computer and use it in GitHub Desktop.
Save Arieg419/1827f4cb72231264180d575526bc9032 to your computer and use it in GitHub Desktop.
const add = (x,y) => x + y;
const subtract = (x,y) => x - y;
const multiply = (x,y) => x * y;
const arrayOfFunctions = [add, subtract, multiply];
arrayOfFunctions.forEach(calculationFunction => console.log(calculationFunction(1,1))); // 2 0 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment