Please tell me how to write javascript below in coffeescript.

setTimeout(function(){
    something(param);
}, 1000);
link|improve this question

80% accept rate
I upvoted the question, not that it was exactly what I was looking for but the answers lead me in the right direction. – MikeScott8 Feb 3 at 22:44
feedback

3 Answers

up vote 31 down vote accepted

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:

delay = (ms, func) -> setTimeout func, ms

delay 1000, -> something param

Granted, this adds the overhead of an extra function call to every setTimeout you make; but in today's JS interpreters, the performance drawback is insignificant unless you're doing it thousands of times per second. (And what are you doing setting thousands of timeouts per second, anyway?)

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):

callback = -> something param
setTimeout callback, 1000
link|improve this answer
1  
Great! I like the second approach. – tomodian Jun 25 '11 at 6:03
feedback
setTimeout ( ->
  something param
), 1000

The parenthesis are optional, but starting the line with a comma seemed messy to me.

link|improve this answer
Thanks. Coffeescript sometimes screws me up because it's code is so clean. – tomodian Jun 25 '11 at 6:05
feedback

This will result in a roughly equivalent translation (thanks @Joel Mueller):

setTimeout (-> something param), 1000

Note that this isn't an exact translation because the anonymous function returns the result of calling something(param) instead of undefined, as in your snippet.

link|improve this answer
Too many parens/semicolons! This is CoffeeScript, getting rid of excess parens is half the point. setTimeout (() -> something param), 1000 – Joel Mueller Jun 23 '11 at 19:44
@Joel Mueller: thanks, I've updated my answer. – maerics Jun 23 '11 at 19:46
Nicholas makes a good point that the empty parens are also optional. – Joel Mueller Jun 23 '11 at 19:49
Thanks, I've used to messy code of Javascript, and Coffeescript sometimes confuses me. – tomodian Jun 25 '11 at 6:10
feedback

Your Answer

 
or
required, but never shown

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