<div class="col-md-4 col-sm-6 col-xs-12 featured" ng-repeat="item in beds">
    <div class="stars"  ng-repeat="t in [item.Value.Rate]">
        <i class="fa fa-star"></i>
    </div>
</div>
This is my code. when i want to use ng-repeat second time, it's not working. i want something like that:
if [item.Value.Rate] return 3, append  <i class="fa fa-star"></i> 3 times, if it returns 1, just one  <i class="fa fa-star"></i>
 
     
     
     
    