MilaDimitrovaa

Birthday

Nov 1st, 2020
2,111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function birthday(arg){
  2.   let hall = Number(arg);
  3.   let cake = hall * 0.20;
  4.   let drinks = cake * 0.55;
  5.   let animator = hall / 3 ;
  6.   let result = hall + cake + drinks + animator;
  7.   console.log(result);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment