I have created some arrays, example yy1, yy2, yy3, etc., and I am able to display the elements of an array using
for (j=0; j < count; j++){
alert(yy1[j]);
}
and other arrays by changing number, that is yy2, yy3...
How to display the array in a loop, like
for (i=0; i< lengthL; i++){
for (j=0; j < count; j++){
alert(yyi[j]);
}
}
That is how to join yy with i.
Please let me know if I am not clear, thanks in advance.