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. |
||||
|
|
|
js2coffee.org Converts code for you both ways. |
|||
|
|
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
|
|||||||||||
|
|
The marked answer is functionaly correct but the generated code doesn't match the original javascript.
is Now this code, still creates an extra
|
|||
|
|