Variable Variables in JavaScript

admin

Administrator
Staff member
I am trying to add a counter part to the end of a variable. Here is the pseudo code:

for (i=1;i<=20:i++){

temp&i=temp&i+1;}

Here I used the & for the variable concatenation. This doen not work in JavaScript. Is there another way????
 
Back
Top