Skip to content

Instantly share code, notes, and snippets.

@ponich
Created March 18, 2021 13:14
Show Gist options
  • Save ponich/cc471a7915d2bc2ee6962ce6a3970477 to your computer and use it in GitHub Desktop.
Save ponich/cc471a7915d2bc2ee6962ce6a3970477 to your computer and use it in GitHub Desktop.
get data from array by pagination
function getPagedData({data, page, size}) {
const skip = (page * size) - size;
return data.slice(skip, size + skip);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment