Is it possible to leave out the variable assignment from a for loop and do something like this…?
otherVar = 3;
for ( otherVar > 0; otherVar-- )
{
stuff
}
Is it possible to leave out the variable assignment from a for loop and do something like this…?
otherVar = 3;
for ( otherVar > 0; otherVar-- )
{
stuff
}
Usually While is more popular for this situation (better readability)..
otherVar = 3;
while ( otherVar > 0)
{
stuff
otherVar--;
}
You can count down from any arbitrary number:
var counter = 3;
while ( counter-- ) {
console.log( counter );
}
Which outputs: 2, 1, 0