skip
Skip a given amount it items
Parameters
count Number
The number of items that should be skipped
Returns
kendo.data.Query
Returns a new instance of kendo.data.Query with the first count
elements of the list skipped
Example
<script>
var query = new kendo.data.Query([
{ name: "Jane Doe", age: 30 },
{ name: "John Doe", age: 33 },
{ name: "Bob Smith", age: 25 },
{ name: "Alice Johnson", age: 28 }
]);
var skippedQuery = query.skip(2);
var result = skippedQuery.toArray();
// the result can be seen in the browser console.
console.log(result); // Will contain only Bob Smith and Alice Johnson
</script>
In this article