Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function basketballEquipment (input){
- let tuitionFee = Number(input);
- let shoesPrice = tuitionFee * 0.6;
- let teamClothes = shoesPrice * 0.8;
- let ball = teamClothes / 4;
- let accessories = ball / 5;
- let sum = tuitionFee + shoesPrice + teamClothes + ball + accessories;
- console.log(sum);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement