-Annie-

calculateSumAndVat

May 23rd, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function sumVat(arr) {
  2.     let sum = 0;
  3.    
  4.     for(let i = 0; i < arr.length; i++) {
  5.         sum += arr[i];
  6.     }
  7.  
  8.     console.log(`sum = ${sum}`);
  9.     console.log(`VAT = ${sum * 0.2}`);
  10.     let total = sum + sum * 0.2;
  11.     console.log(`total = ${total}`);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment