JSFiddle - React, Tailwind, and code Playground

by indatawetrust

HTML

<html ng-app>
    <body ng-controller="angularJs">
        <ul>
            <input type="text" ng-model="sayiLimit" placeholder="sayi limit"/>
            {{ sayiDizesi | limitTo:sayiLimit }}
           <br> <input type="text" ng-model="harfLimit" placeholder="harf limit"/>
            {{ harfDizesi | limitTo:harfLimit }}
        </ul>
    </body>
</html>

JavaScript

function angularJs($scope){
    $scope.sayiDizesi = [1,2,3,4,5,6,7,8,9];
    $scope.harfDizesi = "istanbul";
    $scope.sayiLimit  = 4;
    $scope.harfLimit  = 4;
}