填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

formatCurrency

Formats a number as currency using locale rules.

formatCurrency(value: number, locale: string, currency: string, currencyCode?: string, digitsInfo?: string): string
      
      formatCurrency(value: number, locale: string, currency: string, currencyCode?: string, digitsInfo?: string): string
    
参数
value number

The number to format.

locale string

A locale code for the locale format rules to use.

currency string

A string containing the currency symbol or its name, such as "$" or "Canadian Dollar". Used in output string, but does not affect the operation of the function.

currencyCode string

可选. 默认值是 undefined.

The ISO 4217 currency code to use in the result string, such as USD for the US dollar and EUR for the euro.

digitsInfo string

可选. 默认值是 undefined.

返回值

string: The formatted currency value.

参见