Guest User

Untitled

a guest
May 23rd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. export const getTotalPrice = state =>{
  2. let totalPrice = 0
  3. state.basket.map((item) => totalPrice = totalPrice + parseFloat(item.price.toFixed(2)) )
  4. return totalPrice
  5. }
Add Comment
Please, Sign In to add comment