Description
Formats a number as a currency (ie $1,234.56).
Usage
In HTML Template Binding
{{ currency_expression | currency }}
In JavaScript
angular.filter.currency(amount)
Parameters
amount – {number} –
Input to filter.
Returns
{string}
–
Formated number.
Example
<input type="text" name="amount" value="1234.56"/> <br/>
{{amount | currency}}
it('should init with 1234.56', function(){
expect(binding('amount | currency')).toBe('$1,234.56');
});
it('should update', function(){
input('amount').enter('-1234');
expect(binding('amount | currency')).toBe('$-1,234.00');
expect(element('.doc-example-live .ng-binding').attr('className')).
toMatch(/ng-format-negative/);
});