Currency Formatter

Formats a number as a localized currency.

Contributed by @itsbrunodev

javascript
function formatCurrency(value, locale = "en-US", currency = "USD") {
  return new Intl.NumberFormat(locale, { style: "currency", currency }).format(
    value
  );
}
javascript
formatCurrency(1234.56); // "$1,234.56"
GitHubEdit on GitHub