forked from zero-to-mastery/JS_Fun_Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraza_solutions.js
65 lines (50 loc) · 1.75 KB
/
raza_solutions.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
// identity(x) ⇒ any
// Write a function identity that takes an argument and returns that argument
const identity = (x) => x;
console.log('Hey there, Delilah');
//addb(a, b) ⇒ number
//Write a binary function addb that takes two numbers and returns their sum
const addb = (x, y) => (x + y);
console.log(`What's it like in New York city?`);
//subb(a, b) ⇒ number
//Write a binary function subb that takes two numbers and returns their difference
const subb = (x, y) => ( x - y);
console.log(`I'm a thousand miles away`);
//mulb(a, b) ⇒ number
//Write a binary function mulb that takes two numbers and returns their product
const mulb = (x, y) => (x * y);
console.log(`But, girl, tonight you look so pretty`)
//minb(a, b) ⇒ number
//Write a binary function minb that takes two numbers and returns the smaller one
const minb = (x, y) => (x < y ? x : y);
console.log(`Yes, you do`);
//maxb(a, b) ⇒ number
//Write a binary function maxb that takes two numbers and returns the larger one
const maxb = (x, y) => {
return x > y ? x : y;
}
console.log(`Time square can't shine as bright as you`);
//add(...nums) ⇒ number
//Write a function add that is generalized for any amount of arguments
const add = (...nums) => {
let add = 0;
for (let i = 0; i < nums.length; i++) {
add += nums[i];
}
return add;
};
console.log(`I swear, it's true`);
//sub(...nums) ⇒ number
//Write a function sub that is generalized for any amount of arguments
const sub = (...nums) => nums.reduce((acc, cur) => acc - cur);
console.log(sub(1, 2, 4));
module.exports = {
identity,
addb,
subb,
mulb,
minb,
maxb,
add,
sub
};