Tell us what’s happening:
What am I doing incorrectly? Please help. Thanks a lot!
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* file: script.js */
// User Editable Region
calculateTotal() {
const subTotal = this.items.reduce((total, item) => {
return total + item.price
},0)
return subTotal
}
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0
Challenge Information:
Build a Shopping Cart - Step 43