JSFiddle - React, Tailwind, and code Playground

by Rajeesh Menoth

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">
  <h1>{{ amount : currency }}</h1>


</div>

JavaScript

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