I’d like to be able to take a variable, say x, which equals 2, and append it to the name of a variable. This is probably a simple problem, or one that can’t be solved, but is there a way?
I’ve tried using
var ride+x = 3;
var ride.concat(x) = 3;
I’d like to be able to take a variable, say x, which equals 2, and append it to the name of a variable. This is probably a simple problem, or one that can’t be solved, but is there a way?
I’ve tried using
var ride+x = 3;
var ride.concat(x) = 3;