-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path11.01.FruitShop.js
More file actions
77 lines (71 loc) · 2.07 KB
/
11.01.FruitShop.js
File metadata and controls
77 lines (71 loc) · 2.07 KB
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
function fruitShop(fruit, day, quantity){
let price = 0;
switch (day) {
case `Monday`:
case `Tuesday`:
case `Wednesday`:
case `Thursday`:
case `Friday`:
switch (fruit) {
case `banana`:
price = 2.50;
break;
case `apple`:
price = 1.20;
break;
case `orange`:
price = 0.85;
break;
case `grapefruit`:
price = 1.45;
break;
case `kiwi`:
price = 2.70;
break;
case `pineapple`:
price = 5.50;
break;
case `grapes`:
price = 3.85;
break;
default:
console.log(`error`);
return;
}
break;
case `Saturday`:
case `Sunday`:
switch (fruit) {
case `banana`:
price = 2.70;
break;
case `apple`:
price = 1.25;
break;
case `orange`:
price = 0.90;
break;
case `grapefruit`:
price = 1.60;
break;
case `kiwi`:
price = 3.00;
break;
case `pineapple`:
price = 5.60;
break;
case `grapes`:
price = 4.20;
break;
default:
console.log(`error`);
return;
}
break;
default:
console.log(`error`);
return;
}
console.log((quantity * price).toFixed(2));
}
fruitShop(`tomato`, `Monday`, 0.5);