Skip to content

Commit c304ad1

Browse files
fixed the code and deleted the let variable for order
1 parent fea61be commit c304ad1

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

Sprint-1/destructuring/exercise-3/exercise.js

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
1-
let order = [
2-
{ itemName: "Hot cakes", quantity: 1, unitPricePence: 232 },
3-
{ itemName: "Apple Pie", quantity: 2, unitPricePence: 139 },
4-
{ itemName: "Egg McMuffin", quantity: 1, unitPricePence: 280 },
5-
{ itemName: "Sausage McMuffin", quantity: 1, unitPricePence: 300 },
6-
{ itemName: "Hot Coffee", quantity: 2, unitPricePence: 100 },
7-
{ itemName: "Hash Brown", quantity: 4, unitPricePence: 40 },
8-
];
1+
92

103
const order = [
114
{ itemName: "Hot Cakes", quantity: 1, unitPricePence: 232 },

0 commit comments

Comments
 (0)