Skip to content
Advertisement

Javascript how can I calculate total price in an array of items?

I’m new to js and have a cart in a webstore I am making for a Javascript assignment, and I can’t get my total price working which displays on the webpage when the user clicks on items to add to the cart. Here is my array of items, any help would be appreciated, thank you

JavaScript

and here is my display function

JavaScript

Advertisement

Answer

You are trying to create an associative array (key/value pairs), which isn’t how standard arrays work in JavaScript.

Instead, create an array of objects that store the data. Each “record” will be persisted as an object and those objects will each get a common set of property names (prop1 and prop2 in my example). You can then loop through the array of objects and upon each iteration, grab the property you are interested in (prop2) in this case.

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