The way you're doing it now isn't faster (apart from it being an indefinite loop, I guess you meant to do i--
.
If you want to make it faster do:
for (i = 10; i--;) {
//super fast loop
}
of course you wouldn't notice it on such a small loop. The reason it's faster is because you're decrementing i while checking that it's "true" (it evaluates to "false" when it reaches 0)