Advertisement
Didart

Yard Greening

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