Edit This Code:
<!DOCTYPE html>
<html>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>

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

<p>Price = {{ price | currency : "NOK" : 3}}</p>

</div>

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

<p>You can change the number of decimals by setting the fractionsize parameter.</p>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy