var b = '1';
How can I create a variable name using the contents of variable b? I am doing this in a each loop, so b will change.
I am wanting the final product to be something like:
var trip1 = '';
How would I accomplish something like that?
var trip + b = '';
var trip.b = '';