-
-
Save preaction/e149f44eb8caa1820c8f57e90def07c0 to your computer and use it in GitHub Desktop.
Increment Every 10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var nodes = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 ]; | |
for (var i = 0; i < nodes.length; i+=10) { | |
for ( var j = 0; j < 10 && i+j < nodes.length; j++ ) { | |
console.log( 'i:' + i + ' j:' + j + ' i+j:' + ( i + j ) ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment