-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
142 lines (108 loc) · 7.05 KB
/
app.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
'use strict';
/////////////////////////////////////
/* Problem 1 (this is your demo that we'll solve in class)
Write a function called sum() that takes in two numbers as arguments and then returns an array where the first element is the sum of those numbers, and the second element is a concatenated string that EXACTLY follows this example and uses the values that were input into the function:
"The sum of 4 and 7 is 11."
Test this function by hand in the console to get it working, and when you think it is finished, uncomment the call for the testSum() function below and check the console to see if the test passes.*/
// Write your code here
function sum(a,b){ //eslint-disable-line
var total = a + b;
var string = 'The sum of ' + a + ' and ' + b + ' is ' + total + '.';
console.log(total);
console.log(string);
return [total, string];
}
// Here is the test for sum(); uncomment it to run it
testSum(4, 7);
// Once you get the test passing, do an a-c-p cycle and synchronize the code between GitHub and your laptop. Don't forget to create a new branch for your work on the next question!
/////////////////////////////////////
/* Problem 2
Write a function called multiply() that takes in two numbers as arguments and returns an array where the first element is the product of those numbers, and the second element is a string that EXACTLY follows this example and uses the values that were input into the function:
"The product of 5 and 9 is 45."
Test this function by hand in the console to get it working, and when you think it is finished, uncomment the call for the testMultiply() function and see if the test passes.*/
// Write your code here
function multiply(a,b){ //eslint-disable-line
var total = a * b;
var string = 'The product of ' + a + ' and ' + b + ' is ' + total + '.';
console.log(total);
console.log(string);
return [total, string];
}
// Here is the test for multiply(); uncomment it to run it
testMultiply(5,9);
// Once you get the test passing, do an a-c-p cycle and synchronize the code between GitHub and your laptop. Don't forget to create a new branch for your work on the next question!
/////////////////////////////////////
/* Problem 3
Write a function called sumAndMultiply() that takes in three numbers as separate arguments and returns an array where the first element is the sum of those three numbers, the second element is the product of those three numbers, and the third and fourth elements are strings that EXACTLY follow this example and use the values that were input into the function:
Third element: "4 and 7 and 5 sum to 16."
Fourth element: "The product of 4 and 7 and 5 is 140."
IMPORTANT DETAIL: You may not use the arithmetic operators + and * in this function. To do addition, use your sum() function, and to do multiplication, use your multiply() function that you've already created. You're going to have to be resourceful to figure out how to do this.
Test this function by hand in the console to get it working, and when you think it is finished, uncomment the call for the testSumAndMultiply() function and see if the test passes.*/
// Write your code here
function sumAndMultiply(a,b,c){ //eslint-disable-line
var add = sum(a,b);
console.log(add[0]);
var secOne = add[0];
console.log('secOne', add[0]);
var totalAdd = sum(secOne, c);
console.log('secTwo', totalAdd);
var times = multiply(a,b);
console.log('times', times[0]);
var totalTimes = multiply(times[0], c);
console.log(totalTimes);
var string = a + ' and ' + b + ' and ' + c + ' sum to ' + totalAdd[0] + '.';
console.log(string);
var stringTwo = 'The product of ' + a + ' and ' + b + ' and ' + c + ' is ' + totalTimes[0] + '.';
console.log(stringTwo);
return [totalAdd[0], totalTimes[0], string, stringTwo];
}
// Here is the test for sumAndMultiply(); uncomment it to run it
testSumAndMultiply(4,7,5);
// Once you get the test passing, do an a-c-p cycle and synchronize the code between GitHub and your laptop. Don't forget to create a new branch for your work on the next question!
/////////////////////////////////////
/* Problem 4
Write a function called sumArray() that takes in an array of numbers as its single argument and then returns an array where the first element is the sum of the numbers in the array, and the second element is a string that EXACTLY follows this example and uses the values that were input into the function:
"2,3,4 was passed in as an array of numbers, and 9 is their sum."
IMPORTANT DETAIL: You may not use the arithmetic operator + in this function. To do addition, use your sum() function that you've already created. You're going to have to be resourceful to figure out how to do this.
Test this function by hand in the console to get it working, and when you think it is finished, uncomment the call for the testSumArray() function and see if the test passes.*/
// Write your code here
var testArray = [2,3,4]; //eslint-disable-line
function sumArray(testArray){ //eslint-disable-line
var a = testArray[0];
var b = testArray[1];
var c = testArray[2];
var add = sum(a, b);
console.log(add[0]);
var secOne = add[0];
console.log('secOne', add[0]);
var totalAdd = sum(secOne, c);
console.log('secTwo', totalAdd);
var string = a + ',' + b + ',' + c + ' was passed in as an array of numbers, and ' + totalAdd[0] + ' is their sum' + '.';
console.log(string);
return [totalAdd, string];
}
// Here is the test for sumArray(); uncomment it to run it
testSumArray(testArray);
// Once you get the test passing, do an a-c-p cycle and synchronize the code between GitHub and your laptop. Don't forget to create a new branch for your work on the next question!
/////////////////////////////////////
/* Problem 5
Write a function called multiplyArray() that takes an array of numbers as its argument and returns an array whose first element is the product of those numbers, and the second element is a string that EXACTLY follows this example and uses the values that were input into the function:
"The numbers 2,3,4 have a product of 24."
IMPORTANT DETAIL: You may not use the arithmetic operator * in this function. To do multiplication, use your multiply() function that you've already created. You're going to have to be resourceful to figure out how to do this.
Test this function by hand in the console to get it working, and when you think it is finished, uncomment the call for the testMultiplyArray() function and see if the test passes.*/
// Write your code here
function multiplyArray(testArray){ //eslint-disable-line
var a = testArray[0];
var b = testArray[1];
var c = testArray[2];
var times = multiply(a, b);
console.log('times', times[0]);
var totalTimes = multiply(times[0], c);
console.log(totalTimes);
var string = 'The numbers ' + a + ',' + b + ',' + c + ' have a product of ' + totalTimes[0] + '.';
console.log(string);
return [totalTimes, string];
}
// Here is the test for multiplyArray(); uncomment it to run it
//testMultiplyArray(2,3,4);
// Once you get the test passing, do an a-c-p cycle and synchronize the code between GitHub and your laptop. You're done! Submit the link to the repo following the instructions in Canvas.