Skip to content

Commit 3bd3534

Browse files
authoredMar 19, 2023
Update 10_Objects.js
1 parent 98ca1ae commit 3bd3534

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎JavaScript/10_Objects.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ describe('order', () => {
6666
});
6767
});
6868

69+
70+
6971
//index.js
7072
function numberOfPizzas(orders) {
7173
let sum=0;
@@ -110,7 +112,7 @@ const ORDER_TYPES = {
110112
PIZZA : 0,
111113
WINGS : 1,
112114
SALAD : 3,
113-
BURGER : 4,
115+
BURGER : 9,
114116
FRIES : 6,
115117
SANDWICH :7
116118
}
@@ -159,7 +161,7 @@ const ORDER_TYPES = {
159161
PIZZA : 0,
160162
WINGS : 1,
161163
SALAD : 3,
162-
BURGER : 4,
164+
BURGER : 9,
163165
FRIES : 6,
164166
SANDWICH : 7
165167
}

0 commit comments

Comments
 (0)
Please sign in to comment.