I haven’t got any code yet, as I was just wondering if it is possible to loop through an Array that is dynamically populated to the amount of values could be different each time. The variables would obviously have to make use of an incrementing value?
I haven’t got any code yet, as I was just wondering if it is
Share
You can use the array length property to work with an unknown array lengths:
That will loop through the whole array even if it there are more or less elements on it
With this base, I am sure you can do what you want from here