top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

how to show only one value from ng-repeat

+4 votes
331 views
how to show only one value from ng-repeat
posted May 26, 2015 by Muskan

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Don't use ng-repeat directive, this should work:

<div>{{ products[0].price }}</div>
answer Jan 27, 2017 by Manikandan J
...