Liliana797979

birthday party

Nov 27th, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function happyBirthday(arg) {
  2.    let hallRental = Number(arg);
  3.    
  4.    cakePrice = hallRental * 0.20;
  5.    drinksPrice = cakePrice * 0.55;
  6.    animatorPrice = hallRental * 1/3;
  7.    budget = hallRental + cakePrice + drinksPrice + animatorPrice;
  8.  
  9.    console.log(budget);
  10.  }
  11.  
  12.  happyBirthday("2250");
Advertisement
Add Comment
Please, Sign In to add comment