Advertisement
popovIliya

March-2022-FirstStepsInCoding-Lab-SoftUni - Pet Shop

Feb 26th, 2022
871
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function costs(input){
  2.     let dogFoodPrice = 2.50;
  3.     let catFoodPrice = 4;
  4.     let dogPackage = parseInt(input[0]);
  5.     let catPackage = parseInt(input[1]);
  6.     let res = ((dogPackage * dogFoodPrice) + (catPackage * catFoodPrice));
  7.     console.log(`${res} lv.`);
  8.  }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement