-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmealMaker.js
78 lines (68 loc) · 2.09 KB
/
mealMaker.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
// menu objects declaration
const menu = {
_courses: {
_appetizers: [],
_mains: [],
_desserts: [],
get appetizers() {
return this._appetizers;
},
set appetizers(item) {
this._appetizers = item;
},
get mains() {
return this._mains;
},
set mains(item) {
this._mains = item;
},
get desserts() {
return this._desserts;
},
set desserts(item) {
this._desserts = item;
}
},
get courses() {
return {
appetizers: this._courses.appetizers,
mains: this._courses.mains,
desserts: this._courses.desserts
}
},
set courses(item) {
},
addDishToCourse(courseName, name, price) {
const dish = {
name: name,
price: price
};
this._courses[courseName].push(dish);
},
getRandomDishFromCourse(courseName) {
const dish = this._courses[courseName];
const randomMeal = Math.floor(Math.random() * dish.length);
return dish[randomMeal];
},
generateRandomMeal() {
const appetizer = this.getRandomDishFromCourse('appetizers');
const mainDish = this.getRandomDishFromCourse('mains');
const dessert = this.getRandomDishFromCourse('desserts');
const totalPrice = appetizer.price + mainDish.price + dessert.price;
return `Your meal is ${appetizer.name} with ${mainDish.name}, followed by ${dessert.name}. Total price is $${totalPrice}`;
}
};
// load menu
menu.addDishToCourse('_desserts', 'Mud Pie', 8.95);
menu.addDishToCourse('_mains', 'NY T-Bone Steak 12oz', 16.95);
menu.addDishToCourse('_mains', 'Lasagna', 9.95);
menu.addDishToCourse('_appetizers', 'Tuna Tartar', 8.75);
menu.addDishToCourse('_appetizers', 'Sea of Mussels', 9.99);
menu.addDishToCourse('_appetizers', 'Kumamoto Oysters', 13.75);
menu.addDishToCourse('_desserts', 'Ring Around Fingers', 25.99);
menu.addDishToCourse('_desserts', 'Megatower of Ice', 10.99);
menu.addDishToCourse('_desserts', 'MC Crepes', 6.99);
menu.addDishToCourse('_mains', 'Grilled Salmon', 11.50);
console.log(menu.courses);
// generate random meal
console.log(menu.generateRandomMeal());