(Replying to PARENT post)
(Replying to PARENT post)
For-loops are used in really limited ways, but they should be used much more often. Programmer should be better versed in how for loops work, the fact that you can add multiple expressions between each semi-color (;), etc. The reason is, for-loops are the most readable constructs for looping. Here's why:
For-loops are the one loop construct which give you all the information about the looping at once. Used smartly, you can read the first line of the for-loop, and discover everything that the programmer would like to do, that has to do with the looping.
For example, adding two variables to be incremented in a for-loop is trivial: for (int i=0, int b=10; i==10; i++,b++)
This can also be done outside of the for-loop declaration, e.g. as the first line inside the for-loop. However, for smart programmers, this signals, to me, that "b" is another variable having to do with the loop that I would like incremented each time. In other words, it gives me more info.
Other good uses can include checking two conditions, checking conditions with side-effects (e.g. instead of i++, use word=read_word_from_file()), etc. Lots of people are uncomfortable with these in a for-loop, but I maintain that's the best construct for these kinds of things, since it gives you all the info you need to understand the loop at one point only.
(Replying to PARENT post)
Especially in JavaScript. Please stop using for loops in favour of asynchronous recursion (or similar). Thank you.
This is what I've been using lately, pretty neat: http://github.com/caolan/async
(Replying to PARENT post)
"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." โ Brian W. Kernighan
(Replying to PARENT post)
(Replying to PARENT post)
(Replying to PARENT post)
var ids = [story.id for (story in stories)]
(Replying to PARENT post)
(Replying to PARENT post)
$.each(new Array(3), function(i){ alert(i); });
(Replying to PARENT post)