didkoslawow

Untitled

Sep 11th, 2022
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function basketballEquipment(input) {
  2.  
  3. let yearTax = Number(input[0]);
  4. let shoes = yearTax - (yearTax * 0.40);
  5. let wears = shoes - (shoes * 0.20);
  6. let ball = wears / 4;
  7. let accessories = ball / 5;
  8. let totalSum = yearTax + shoes + wears + ball + accessories;
  9.  
  10. console.log(totalSum);
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment