Skip to content
Advertisement

I would like to make my program display the order total/invoice

Here is what ive done:

JavaScript

I want to display an invoice at the end once the user has completed there order showing there total price.

This is some of my code for just the drinks, same type of code used for cheeseburger etc. :

JavaScript

Advertisement

Answer

You can use something like this:

JavaScript

So the base price is 5 for the delivery and if you pick cola it adds the price of the cola multiplied by the amount you purchase to the price variable.

The += operator is best for this.

Changes:

JavaScript

hope this helps!

FINAL CODE WITH ALL FIXES:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement