for (i = 0; i < 10; i++) {

    doStuff();

}

That's the JavaScript code that I Want to convert to CoffeeScript.

link|improve this question

feedback

1 Answer

up vote 11 down vote accepted
doStuff() for i in [0 .. 9]

This is explained on the introduction page: http://jashkenas.github.com/coffee-script/#loops

Edit/Update by JP:

The exact translation is:

doStuff() for i in [0...10]

You need to be careful with the ".." vs "...", for example:

count = 0
doStuff() for i in [0..count] #still executes once!

So you think, no problem... I'll just loop until count-1!

count = 0
doStuff() for i in [0..count-1] #executes twice!! '0' and then '-1'

Literal translation of:

for (var i = 0; i < someCount; ++i)
  doStuff()

is

for i in [0...someCount]
  doStuff()   
link|improve this answer
3  
Right, or to translate it literally, for i in [0...10]. Two dots (..) means "up to and including," while three dots (...) means "up to but not including." It's a Ruby-ism. – Trevor Burnham Sep 7 '11 at 18:09
The range operators originate from Perl which heavily influenced Ruby. Not sure if Perl invented them or inherited from another ancient language. – matyr Sep 8 '11 at 13:33
@JP Well if you introduce a variable in the loop the code will behave differently. For example it will determine runtime which way the counter should go. 0 .. 0 should execute once. 0 .. -1 should execute twice. – jontro Oct 24 '11 at 11:14
@Bengt exactly. I thought it was an important to modify the answer so that would be internet searchers don't get confused. AFAIR, the CoffeeScript docs aren't clear on this. I got burned by it, I don't want others. I think my additional examples spell this out for people. – JP Richardson Oct 24 '11 at 20:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.