Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function birthdayParty(input) {
- let rent = Number(input[0]);
- let cake = rent * 0.20;
- let beverages = cake * 0.55;
- let animator = rent / 3;
- let budget = rent + cake + beverages + animator;
- console.log(budget);
- }
Add Comment
Please, Sign In to add comment