If you're a good programmer you might look at that above example and
think , you only allocated three elements for that array,
but you assigned four values! Well, this can be done because in ASP arrays are zero based.
This means when you declare fixed array of size A then you can assign values for each value
from 0 through A. Below is the ASP code which is perfectly functional that will go through our array and
print out the contents of each element in that array . If you are confused by this new for
loop code it will be taught later.Don't worry
|