Programming Code Center(PCC)
[ANGULARJS]

(PCC)::[How-to-use-Expression-Filter-currency-in-AngularJS]::[angularjs]

File Name : index.html

<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<body>

<div ng-app="myApp" ng-controller="costCtrl">

<h1>Price: {{ price | currency }}</h1>

</div>

<script>
var app = angular.module('myApp', []);
app.controller('costCtrl', function($scope) {
    $scope.price = 58;
});
</script>

<p>The currency filter formats a number to a currency format.</p>

</body>
</html>

Output :

Price: {{ price | currency }}

The currency filter formats a number to a currency format.