for (i = 0; i < 10; i++) {
doStuff();
}
That's the JavaScript code that I Want to convert to CoffeeScript.
That's the JavaScript code that I Want to convert to CoffeeScript.
| ||||
|
feedback
|
This is explained on the introduction page: http://jashkenas.github.com/coffee-script/#loops Edit/Update by JP: The exact translation is:
You need to be careful with the ".." vs "...", for example:
So you think, no problem... I'll just loop until count-1!
Literal translation of:
is
| |||||||||||
feedback
|