How to write this in coffeescript?

f = (function(){
   // something
})();

Thanks for any tips :)

link|improve this question

25% accept rate
feedback

3 Answers

While you can just use parentheses (e.g. (-> foo)(), you can avoid them by using the do keyword:

do f = -> console.log 'this runs right away'

The most common use of do is capturing variables in a loop. For instance,

for x in [1..3]
  do (x) ->
    setTimeout (-> console.log x), 1

Without the do, you'd just be printing the value of x after the loop 3 times.

link|improve this answer
+1 wow, I didn't know do could be used that way. Awesome! – Shrikant Sharat Apr 11 '11 at 5:25
5  
You can also write f = do -> console.log x – scribu Aug 7 '11 at 16:26
@scribu Well, those two statements are very different, and yours is actually the one that I should have given. Mine assigns the function -> console.log 'this runs right away' to f, then runs it; yours runs the function and then assigns its result to f, as in the original question. (Though in the case of console.log, the return value is always undefined anyway.) – Trevor Burnham Aug 7 '11 at 19:23
1  
Exactly. Also, you can define object properties this way: {f: do -> // something} – scribu Aug 7 '11 at 20:31
+1, this answer deserves the badge for 25 +s – hvgotcodes May 9 at 1:35
feedback

Apologies, I solved it:

f = (
    () -> "something"
)()
link|improve this answer
jashkenas.github.com/coffee-script there's a closure example in there. – kjy112 Apr 9 '11 at 13:33
1  
This is not the coffee script way. Even if it works. – Alex Wayne Apr 10 '11 at 18:27
@Squeegy I wouldn't necessarily say that. The do keyword has some limitations that make it necessary to use the JS-style approach sometimes (see issue 960); do was really only added because of the loop-with-closures use case. – Trevor Burnham Aug 8 '11 at 13:42
But we aren't using CoffeeScript to punch ourselves in the face like that either. – Brandon Aug 31 '11 at 20:10
feedback

If you want to "alias" the arguments passed to self-invoking function in CoffeeScript, and let's say this is what you are trying to achieve:

(function ( global, doc ) {
  // your code in local scope goes here
})( window, document );

Then do (window, document) -> won't let you do that. The way to go is with parens then:

(( global, doc ) -> 
  # your code here
)( window, document ) 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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