Like the subject line reads, I've been beating my head against the wall on how to program adding an additional number to a variable of numbers that already exist. what I mean is if I have a variable called set_numbers:
var set_numbers = 10;
now I want to add the numbers 23 to the back end of it, so that now set_number is = 1023, but the numbers being added is off the fly and maybe totally random.
I've tried using an array. even tried str_for_num and str_to_num, inkey and some other things to stack the numbers behind each other. I know there must be a way, but I just can't seem to figure it out. any help would be appreciated. Thanks.