hello,
If I have an array with non consecutive index, what is an easy way to access the indices that are represented in the array?
Example:
myarray[0] = "zero";
myarray[2] = "two";
myarray[3] = "tri";
Is there a way to iterate through the array, and automatically skipping myarray[1]?
Thanks.