JSFiddle - React, Tailwind, and code Playground

HTML

<img src="https://angularjs.org/img/AngularJS-large.png" height="50px" weight="50px" /></br>

<h3>Currency Filter In AngularJS</h3>

<div ng-app="CurrencyApp" ng-controller="CurrencyController">
  <input type="number" ng-model="amount">
  <h2>{{ amount | currency : value ="TEST" }}</h2>
</div>

JavaScript

var myApp = angular.module('CurrencyApp', []);
myApp.controller('CurrencyController', function($scope) {
  $scope.amount = 1000;
});