I got this code:
var currentsettimevarstring = 'settimevar' + c,
currentsettimevar = currentsettimevarstring;
I want the output of currentsettimevarstring
to be settimevar1
(or 2, 3, 4, etc)
and the output of currentsettimevar
to be the content of the variable settimevar1
How can this be done?