How can I convert this loop to coffeescript?
for (var j = world.m_jointList; j; j = j.m_next) {
drawJoint(j, context);
}
|
How can I convert this loop to coffeescript?
| |||||||
feedback
|
But generally, what's wrong with just writing | |||
|
feedback
|
|
this is the best:
it just describes what the | |||
|
feedback
|
|
| |||
|
feedback
|
|
What's happening in the original: Javascript has compound for loops. The declaration inside the parenthesis has three expressions:
In this code, you set To visualize that,
In reality the items in the list probably don't exist as properties of The name This should do it in coffeescript:
And that would've been a good use of
| |||||||||||
feedback
|