Skip to content

Instantly share code, notes, and snippets.

@mmansion
Created September 24, 2014 15:43
Show Gist options
  • Save mmansion/81478ba3e46b9de5f81f to your computer and use it in GitHub Desktop.
Save mmansion/81478ba3e46b9de5f81f to your computer and use it in GitHub Desktop.
Iterate array multiple times within larger loop

Iterate array multiple times within a larger loop

/*
* Iterate array multiple times within a larger loop
*
*/
var arr = ['one', 'two', 'three'];
var xTimes = 20;
for(var i =0; i < xTimes; i++) {
console.log( arr[i % arr.length] );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment