Say I want something like this:
var i = 0;
for (i upto 100) {
var x+i = "This is another variable altogether";
i++;
}
The javascript interpreter would see:
var x = "This is another variable altogether";
var x1 = "This is another variable altogether";
var x2= "This is another variable altogether";
var x3 = "This is another variable altogether";
var x4 = "This is another variable altogether";
Can I use a variable counter to increment the name of the variable so I have distinct variables altogether?