Skip to main content

formatCurrency()

function formatCurrency(amount, currencyCode): string

Formats a number as currency with a given currency code. Utilizes the Intl.NumberFormat API to handle locale-specific currency formatting.

Parameters

ParameterTypeDescription
amountnumberThe numeric value to be formatted.
currencyCodestringThe ISO currency code (e.g., USD, EUR) to specify the currency.

Returns

string

The formatted currency string in the format "$1,234.56".