function toUSD(amount) {
// RETURN Something..
return new Intl.NumberFormat("en-US", {
style: "currency",
currency: "USD"
}).format(amount);
},
function toUSD(amount) {
// RETURN Something..
return new Intl.NumberFormat("en-US", {
style: "currency",
currency: "USD"
}).format(amount);
},