items
simpleCart.total()
returns:
- total price of items in the cart, before tax and shipping
simpleCart.add({ name: "Cool T-Shirt", price: 5, quantity: 2 }); simpleCart.total(); // 10.00
Comments
- There are no comments for this entry yet.