Skip to content

Instantly share code, notes, and snippets.

@Robzelf
Created July 30, 2020 21:27
Show Gist options
  • Save Robzelf/9c97f9d95264d8d392448773834c9fc3 to your computer and use it in GitHub Desktop.
Save Robzelf/9c97f9d95264d8d392448773834c9fc3 to your computer and use it in GitHub Desktop.
Paginate through array
page_through_array: function( page_size, page_number ) {
return = _array.slice( ( page_number - 1 ) * page_size, page_number * page_size );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment