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