Cruz Castillo

Generation

generate functionFri, 05 May 2023

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)

TypeScript
Generate More

Want to kickstart your project?Use the new AI Studio to create your code