Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
const
USD
=
[
'100'
,
'200'
,
'300'
]
function
moneyChange
(
money
)
{
return
money
*
23000
}
const
VND
=
USD.
map
(
amountMoney
=>
moneyChange
(
amountMoney
)
)
console.
log
(
VND
)