Skip to content

Instantly share code, notes, and snippets.

@fdorantesm
Created August 29, 2020 02:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fdorantesm/bb4a3637baa21b1725b4f3f4d18b5644 to your computer and use it in GitHub Desktop.
Save fdorantesm/bb4a3637baa21b1725b4f3f4d18b5644 to your computer and use it in GitHub Desktop.
function arrayPaginate(array, page_size, page_number) {
--page_number; // because pages logically start with 1, but technically with 0
return array.slice(page_number * page_size, (page_number + 1) * page_size);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment