Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <script src="https://unpkg.com/angular/angular.min.js"></script>
  <script src="https://rawgit.com/aguirrel/ng-currency/latest/dist/ng-currency.js"></script>
  <!-- PLEASE CHANGE AS YOU WISH THIS LOCALE JS -->
  <script src="https://unpkg.com/angular-i18n/angular-locale_es-ar.js"></script>
  <script>
    var app = angular.module('app', ['ng-currency']);
    app.controller('MainCtrl', function($scope) {
      $scope.value = 123456.78;
    });
  </script>
</head>
<body ng-app="app" ng-controller="MainCtrl">
  <input type="text" ng-model="value" ng-currency>
  <p>model value: {{value}}</p>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
nick-woodwardpro
0viewers