Advertisement
Spocoman

04. Orders

Jan 25th, 2022
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function solve (product, count) {
  2.    
  3.     let products = {'coffee': 1.50, 'water': 1.00, 'coke': 1.40, 'snacks': 2.00};
  4.  
  5.     console.log(`${(products[product] * count).toFixed(2)}`);
  6.  
  7. }
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement