Advertisement
Liliana797979

happy birthday

Nov 26th, 2020
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  function happyBirthday(arg1, arg2, arg3, arg4, arg5) {
  2.    let cakePrice = Number(arg1);
  3.    let drinksPrice = Number(arg2);
  4.    let animatorPrice = Number(arg3);
  5.    let hallRental = Number(arg4);
  6.    let budget = Number(arg5);
  7.  
  8.    cakePrice = hallRental * 0.20;
  9.    drinksPrice = cakePrice - 0.45;
  10.    animatorPrice = (1 * 2250) / 3;
  11.    budget = hallRental + cakePrice + drinksPrice + animatorPrice;
  12.  
  13.    console.log(budget);
  14.  }
  15.  
  16.  happyBirthday(2250);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement