Please tell me how to write javascript below in coffeescript.
setTimeout(function(){
something(param);
}, 1000);
|
Please tell me how to write javascript below in coffeescript.
| |||
feedback
|
|
I think it's a useful convention for callbacks to come as the last argument to a function. This is usually the case with the Node.js API, for instance. So with that in mind:
Granted, this adds the overhead of an extra function call to every Of course, a more straightforward approach is to simply name your callback, which tends to produce more readable code anyway (jashkenas is a big fan of this idiom):
| |||||
feedback
|
The parenthesis are optional, but starting the line with a comma seemed messy to me. | |||
feedback
|
|
This will result in a roughly equivalent translation (thanks @Joel Mueller):
Note that this isn't an exact translation because the anonymous function returns the result of calling | |||||||||
feedback
|