Skip to content

Instantly share code, notes, and snippets.

@CMarzin
Created December 13, 2019 10:11
Show Gist options
  • Save CMarzin/af3a5f060f2a95169f72a65f474bca20 to your computer and use it in GitHub Desktop.
Save CMarzin/af3a5f060f2a95169f72a65f474bca20 to your computer and use it in GitHub Desktop.
function paginate (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