Thanks for the quick reply, Dan. I can’t tell you how many of your previous posts have been the Google result that helped me out with something.
Anyway, what I’d love to have happen is something like this:
numArrays = [some number];
defaultArrayName = “arrayNumber”;
for(i = 0; i < numArrays; i++){
var (defaultArrayName + i) = new Array();
}
Obviously what I’ve written above doesn’t work, but hopefully it communicates the idea: a loop that makes numbered arrays. Thoughts?