I have the following list with multiple array: http://hpics.li/8fcfac4
I would like the display the name with AngularJS. So I am doing:
<li data-ng-repeat="deals in filteredDestinations | startFrom:(currentPage - 1)*pageSize | limitTo:pageSize">{{deals.name}}</li>
It like an array of an array?!
Thanks for helping!