Improve this Doc View Source number

  1. filter in module ng

Formats a number as text.

If the input is not a number an empty string is returned.

Usage

In HTML Template Binding

{{ number_expression | number : fractionSize}}

In JavaScript

$filter('number')(number, fractionSize)

Arguments

Param Type Details
number numberstring

Number to format.

fractionSize
(optional)
numberstring

Number of decimal places to round the number to. If this is not provided then the fraction size is computed from the current locale's number formatting pattern. In the case of the default locale, it will be 3.

Returns

string

Number rounded to decimalPlaces and places a “,” after each third digit.

© 2010–2017 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://code.angularjs.org/1.2.32/docs/api/ng/filter/number