Advertisement
teofarov13

Untitled

Oct 5th, 2021
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function basketballEquipment(input) {
  2.     let yearTax = Number(input[0]);
  3.     let sneakers = yearTax * 0.6;
  4.     let equip = sneakers * 0.8;
  5.     let ball = equip / 4;
  6.     let acccessories = ball / 5;
  7.  
  8.     let totalSum = yearTax + sneakers + equip + ball + acccessories
  9.  
  10.     console.log(totalSum)
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement