Creates a new array containing only the first, or last limit
number of elements of the
source array
.
Note: this function is used to augment the Array
type in angular expressions. See
angular.Array
for more info.
angular.Array.limitTo(array, limit);
array – {Array} –
Source array to be limited.
limit – {string|Number} –
The length of the returned array. If the number is positive, the
first limit
items from the source array will be copied, if the number is negative, the
last limit
items will be copied.
{Array}
– A new sub-array of length limit
.