JSFiddle - React, Tailwind, and code Playground

by indatawetrust

HTML

<html ng-app>
    <body ng-controller="angularJs">
        <ul>
            <input type="text" ng-model="sayi" placeholder="sayı"/>
            <p>{{ sayi | number }}</p>
            <p>{{ sayi | number:0 }}</p>
            <p>{{ sayi | number:5 }}</p>
        </ul>
    </body>
</html>

JavaScript

function angularJs($scope){
    $scope.sayi = 5.55555;
}