Guest User

Untitled

a guest
Sep 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. var basket = [
  2. {item: 'garri', amount:500},
  3. {item: 'spagetti', amount:400},
  4. {item: 'torch', amount:300},
  5. {item: 'brush', amount:600}
  6.  
  7. ]
  8. var tax = 550
  9. function actualAmount(basket){
  10. var itemlog = 0;
  11. for (index = 0 ; index < basket.length ; index++)
  12. {
  13. itemlog = itemlog + basket[index].amount
  14. }
  15. console.log(itemlog + tax);
  16. }
Add Comment
Please, Sign In to add comment