number filters

HTML

<div ng-controller="StdController">
  <b> <div>Filters</div></b>
  <hr/>
  <b>number Format:</b>
  <br/> Input :
  <input type="number" ng-model="Amount" />
  <br/>
  <br/> Actual amount:{{Amount}}
  <br/> Fraction amount : {{Amount |number :2}}
  <br/> Non fraction amount : {{Amount |number:0 }}
  <br/> Without fraction size amount : {{Amount |number }}
</div>

JavaScript

var myApp = angular.module('myApp', []);
myApp.controller('StdController', function($scope) {
  $scope.Amount = 99.999;
});