Guest User

Untitled

a guest
Nov 8th, 2022
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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)
Advertisement
Add Comment
Please, Sign In to add comment