Answers for "How to apply limit on ngrepeat"

1

How to apply limit on ngrepeat

<ul class="phones">
      <li ng-repeat="phone in phones | limitTo:5">
        {{phone.name}}
        <p>{{phone.snippet}}</p>
      </li>
</ul>
Posted by: Guest on June-09-2021

Code answers related to "How to apply limit on ngrepeat"

Browse Popular Code Answers by Language