Ian Collins wrote on 08 mei 2006 in comp.lang.javascript
:
Evertjan. wrote: Ian Collins wrote on 08 mei 2006 in comp.lang.javascript:
Evertjan. wrote:
for( var n = rows.length-1; n > 0; --n )
n--
Why?
My mistake, they act the same:
for( var n = 7-1; n > 0; --n )
document.write(n+"<br>");
for( var n = 7-1; n > 0; n-- )
document.write(n+"<br>");
both miss the 0.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)