Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function yardGreening(input){
- let m = Number(input[0]);
- let price = m * 7.61;
- let discount = price * 0.18;
- //let sum = price - discount;
- //console.log(`The final price is: ${sum}`);
- console.log(`The final price is: ${price-discount} lv.`);
- console.log(`The discount is: ${discount} lv.`)
- }
Advertisement
Add Comment
Please, Sign In to add comment