Improve this Doc View Source currency

From Get docs
< Filter components in ngAngularjs/docs/1.8/api/ng/filter/currency


Improve this Doc View Source currency

  1. filter in module ng

Overview

Formats a number as a currency (ie $1,234.56). When no currency symbol is provided, default symbol for current locale is used.


Usage

In HTML Template Binding

{{ currency_expression | currency : symbol : fractionSize}}

In JavaScript

$filter('currency')(amount, symbol, fractionSize)

Arguments

Param Type Details
amount number Input to filter.

symbol

(optional)

string Currency symbol or identifier to be displayed.

fractionSize

(optional)

number Number of decimal places to round the amount to, defaults to default max fraction size for current locale


Returns

string Formatted number.

Example

© 2010–2020 Google, Inc.
Licensed under the Creative Commons Attribution License 3.0.
https://code.angularjs.org/1.8.2/docs/api/ng/filter/currency