Let's just say that I want variables who's content increase like this: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10. But let's just say that I have variables that I want their names to increase like this: aaa, aab, aac, aad, aae, aaf, aag, aah, aai, aaj.
In other words, I want a loop that would create the following:
var aaa = 1;
var aab = 2;
var aac = 3;
var aad = 4;
var aae = 5;
var aaf = 6;
var aag = 7;
var aah = 8;
var aai = 9;
var aaj = 10;
Just saying, the idea in variable name part, is that once it reaches "aaz", it can go on to "aba", and the same when it reaches "azz", it would continue with "zaa".
eval(). I could not do much with it though. I do not want to use either arrays or objects, I would like something that can create variables to the var object/array(whatever it is).