Look at the following code:
for(var j = 0; j <= 12; j++)
{
deck[j] = eval("card_S" + j + "+1");
}
In the eval part, what I need to do is to add one to the variable j, but this is not working - I guess the plus sign inside the string has something to do with it.
So how can I fix this?
Thanks
eval()? That's usually a sign of bad code. – NullUserException♦ Nov 13 '11 at 2:46