Blog

// Define the butchery object
const barklyRoadMuslimButchery = {
  name: "Barkly Road Muslim Butchery",
  location: "Barkly Road",
  meatTypes: [
    { id: 1, name: "Beef", price: 14.00, halalCertification: true, quantity: 0 },
    { id: 2, name: "Chicken", price: 7.00, halalCertification: true, quantity: 0 },
    { id: 3, name: "Lamb", price: 11.00, halalCertification: true, quantity: 0 },
  ],
  displayMeatTypes: function() {
    console.log(${this.name} sells the following halal meat types:);
    this.meatTypes.forEach((meatType) => {
      console.log(ID: ${(link unavailable)}, Name: ${meatType.name}, Price: R${meatType.price}/kg);
    });
  },
  addMeatToCart: function(meatTypeId, quantity) {
    const meatType = this.meatTypes.find((meatType) => (link unavailable) === meatTypeId);
    if (meatType) {
      meatType.quantity += quantity;
    }
  },
  viewCart: function() {
    console.log("Your Cart:");
    this.meatTypes.forEach((meatType) => {
      if (meatType.quantity > 0) {
        console.log(Name: ${meatType.name}, Quantity: ${meatType.quantity}kg, Total: R${meatType.price * meatType.quantity});
      }
    });
  },
  checkout: function() {
    let total = 0;
    this.meatTypes.forEach((meatType) => {
      total += meatType.price * meatType.quantity;
    });
    console.log(Total: R${total});
    // Process payment and reset cart
    this.meatTypes.forEach((meatType) => {
      meatType.quantity = 0;
    });
  },
};

// Display the initial meat types
barklyRoadMuslimButchery.displayMeatTypes();

// Add meat to cart
barklyRoadMuslimButchery.addMeatToCart(1, 2); // Add 2kg of Beef
barklyRoadMuslimButchery.addMeatToCart(2, 1); // Add 1kg of Chicken
barklyRoadMuslimButchery.addMeatToCart(3, 3); // Add 3kg of Lamb

// View cart
barklyRoadMuslimButchery.viewCart();

// Checkout
barklyRoadMuslimButchery.checkout();