How to create variable names depending on loop number
HelloI am trying to create variables dynamically depending on the number of times my loop runs. How can I go about doing this?Examplefor(i=1, i<x, i++, //some code goes here var || i = current data table(); //This obviously does not work, but I hope you get the idea. I would eventually like to have var1, var2, var3, etc... till the loop is done )Does this make sense?t...