Advertisement
Guest User

Untitled

a guest
Feb 16th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. let displayTotalPrice = document.createElement("span");
  2. cart.appendChild(displayTotalPrice);
  3. let totalPrice = 0;
  4.  
  5. if(productData.hasOwnProperty("newPrice")) {
  6. productInfo.innerHTML = productData.name + " - " + productData.newPrice + "</br>";
  7. Number(totalPrice) += Number(productData.newPrice);
  8. }
  9. else {
  10. productInfo.innerHTML = productData.name + " - " + productData.price + "</br>";
  11. Number(totalPrice) += Number(productData.price);
  12. }
  13.  
  14. displayTotalPrice.innerHTML = "Całkowita cena to: " + totalPrice;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement