Skip to content

Instantly share code, notes, and snippets.

@malikkurosaki
Created June 11, 2018 11:29
Show Gist options
  • Save malikkurosaki/b8fe45a33cdc851bdd84826d09365b36 to your computer and use it in GitHub Desktop.
Save malikkurosaki/b8fe45a33cdc851bdd84826d09365b36 to your computer and use it in GitHub Desktop.
create pagenation array
var n = [];
var m = [];
for(i=1;i<=100;i++){
n.push(i);
if(i%10 == 0){
m.push(n);
n = [];
}
}
m.push(n);
console.log(m)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment