I am attempting to create a for loop using a variable, but it seems like I'm running into an issue. No matter what I try, the length of tempArray always remains undefined. I can't figure out why this is happening. Can anyone offer some assistance?
for (i = 0; i < arr.length; i++) {
tempArray = arr[i];
for (k = 0; k <= tempArray.length; i++) {
if (tempArray[k] != /[0-9]+/) {
countinue;
}