How to iterate over a range, lets say from the 3. to 10., of a Backbone collection?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
By slicing the array of models and using _.each on the result
slice is 0 based and the end index is excluded. |
|||
|
|
|
As opposed to slicing, you can be a bit more direct by using the collection's at method.
|
|||
|
|