Skip to content

Instantly share code, notes, and snippets.

@coder618
Created July 10, 2020 10:28
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 coder618/b83600e2cb302168951cfd7bd8276e29 to your computer and use it in GitHub Desktop.
Save coder618/b83600e2cb302168951cfd7bd8276e29 to your computer and use it in GitHub Desktop.
Return pagination index for array
function returnIndex() {
var postsPerPage = 12;
console.log('return start endindex ', page, postsPerPage);
let startIndex = postsPerPage * page;
let endIndex = startIndex + postsPerPage;
return [ startIndex, endIndex ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment