scrimba
Calculate Total Cost
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Calculate Total Cost
AboutCommentsNotes
Calculate Total Cost
Expand for more info
z_challenge.md
run
preview
console
# Challenge

Calculate the total cost of the items in the cart and display it on the Cart page

1. Usually the item in the database will have it's own cost saved, but we're assuming every item we sell costs $5.99, so you can just hard code that cost in
2. To very easily display the total cost in US dollars (or whatever currency you want), use the following:

`<number>.toLocaleString("en-US", {style: "currency", currency: "USD"})`

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toLocaleString
Console
/cart
-3:07