-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02-understand-functional-programming-terminology.js
43 lines (36 loc) · 1.5 KB
/
02-understand-functional-programming-terminology.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
Understand Functional Programming Terminology:
Prepare 27 cups of green tea and 13 cups of black tea and store them in tea4GreenTeamFCC and tea4BlackTeamFCC variables,
respectively.
Note that the getTea function has been modified so it now takes a function as the first argument.
Note: The data (the number of cups of tea) is supplied as the last argument. We'll discuss this more in later lessons.
- The tea4GreenTeamFCC variable should hold 27 cups of green tea for the team.
- The tea4GreenTeamFCC variable should hold cups of green tea.
- The tea4BlackTeamFCC variable should hold 13 cups of black tea.
- The tea4BlackTeamFCC variable should hold cups of black tea.
*/
// Function that returns a string representing a cup of green tea
const prepareGreenTea = () => 'greenTea';
// Function that returns a string representing a cup of black tea
const prepareBlackTea = () => 'blackTea';
/*
Given a function (representing the tea type) and number of cups needed, the
following function returns an array of strings (each representing a cup of
a specific type of tea).
*/
const getTea = (prepareTea, numOfCups) => {
const teaCups = [];
for (let cups = 1; cups <= numOfCups; cups += 1) {
const teaCup = prepareTea();
teaCups.push(teaCup);
}
return teaCups;
};
// Only changed code below this line
const tea4GreenTeamFCC = getTea(prepareGreenTea, 27);
const tea4BlackTeamFCC = getTea(prepareBlackTea, 13);
// Only changed code above this line
console.log(
tea4GreenTeamFCC,
tea4BlackTeamFCC
);