Skip to content

Instantly share code, notes, and snippets.

@rmoura-92
Created July 12, 2013 16:14
Show Gist options
  • Save rmoura-92/5985663 to your computer and use it in GitHub Desktop.
Save rmoura-92/5985663 to your computer and use it in GitHub Desktop.
dim = [19, 119]; // exemplo
var group, lastgroupsize;
_.each(dim, function(item, index) {
if(index == 0) {
lastgroupsize = item;
if(i < item) {
group = index;
}
} else {
if(i >= lastgroupsize && i < item) {
group = index;
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment