Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. const USD = ['100', '200', '300']
  2.  
  3. function moneyChange(money) {
  4.  
  5.     return money * 23000
  6.  
  7. }
  8.  
  9. const VND = USD.map(amountMoney => moneyChange(amountMoney))
  10.  
  11. console.log(VND)