JSFiddle - React, Tailwind, and code Playground

HTML

<DOCTYPE html />
<html ng-app>
<head>
    <title>Testing databinding</title>
    <script src="http://code.angularjs.org/angular-1.0.1.min.js" type="text/javascript"></script>
    <script src="https://raw.github.com/jquery/globalize/master/lib/globalize.js" type="text/javascript"></script>
    <script src="assets/js/controller.js" type="text/javascript"></script>
</head>
<body>
    <div ng-controller="SampleCtrl">
        <input ng-model="property"> <br>
        {{outputMessage}} <br>
        property as currency: {{property | currency}} <br> 
        property: {{property}} <br>
    </div>
</body>
</html>

JavaScript

function SampleCtrl($scope) {
    $scope.outputMessage = "no message";
    $scope.property = 0.0;
    $scope.$watch("property", function (newValue, oldValue) {
        $scope.outputMessage = "oldValue: " + oldValue + " newValue: " + newValue;
        $scope.property = Globalize.parseFloat(newValue);
    });
};