-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path074-chaining-if-else-statements.js
40 lines (38 loc) · 1.16 KB
/
074-chaining-if-else-statements.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
/*
Chaining If Else Statements:
Write chained if/else if statements to fulfill the following conditions:
num < 5 - return Tiny
num < 10 - return Small
num < 15 - return Medium
num < 20 - return Large
num >= 20 - return Huge
- You should have at least four else statements
- You should have at least four if statements
- You should have at least one return statement
- testSize(0) should return the string Tiny
- testSize(4) should return the string Tiny
- testSize(5) should return the string Small
- testSize(8) should return the string Small
- testSize(10) should return the string Medium
- testSize(14) should return the string Medium
- testSize(15) should return the string Large
- testSize(17) should return the string Large
- testSize(20) should return the string Huge
- testSize(25) should return the string Huge
*/
function testSize(num) {
// Only changed code below this line
if (num < 5) {
return "Tiny";
} else if (num < 10) {
return "Small";
} else if (num < 15) {
return "Medium";
} else if (num < 20) {
return "Large";
} else {
return "Huge";
}
// Only changed code above this line
}
testSize(7);