Bot program to count the products bought in the supermarket, with total sum.
let total = 0 let cost = 0 while (true) { let item = prompt("Add item to cart") if (item === null) { break; } cost = prompt("Enter item cost") total += Number(cost) } alert("Total cost = " + total)