Last active
December 3, 2017 10:42
-
-
Save Arieg419/1827f4cb72231264180d575526bc9032 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 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