The .skip() function skips the specified number of rows or the percent of rows if a decimal is specified.

📘

The .skip() is usually used in combination with the .top() function for paging.

The function requires one parameter. The parameter can either be a whole number or a decimal. When a whole number is specified then the number represent the x amount of rows to skip over. When a decimal is specified then the decimal represents the percent of rows to return skip over.

skip(number)
skip(amount: number): jinqJs;