I'm looking for an option to give start and end while looping the array of object in angular.
Now i'm using ng-repeat.
My use case is like i have a section "top" were 3 items to be shown from "lists"(array of objects) sorted by date
and in another section "more" rest of the items have to be shown that is 4 to lists.length.
and i want to use same "lists" as sources rather than pushing to two different array.
As there is an option to delete items from both sections, deleting item from "top" section should pull items from "more" section to "top".