it doesnt matter whether you are counting from 1 to 10 or 10 to 1 as you will still be iterating through the loop 10 times..
for(i = 0 - initialises 'i' and sets value to 0
i<limit - while i is less than limit, carry on the loop
i++ - add 1 to i after each iteration
so.....
for (i = 0; i < 10 ; i++)
console.write(i)
and
for(i = 10 ; i > 0 ; i--)
console.write(i)
would equate to 0,1,2,3,4,5,6,7,8,9 0r 10,9,8,7,6,5,4,3,2,1
but would still iterate 10 times - does this answer your question, or have i misunderstood?