Advertisement
MilaDimitrovaa

Greening

Oct 31st, 2020
1,943
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function greening(input){
  2.  
  3. let price = Number(input) * 7.61;    
  4. let discount = price * 0.18;
  5. let finalPrice = price - discount;
  6. console.log(`The final price is: ${finalPrice} lv.`);
  7. console.log(`The discount is: ${discount} lv.`);
  8.  
  9. }
  10.  
  11. greening();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement