How to write this in coffeescript?
f = (function(){
// something
})();
Thanks for any tips :)
|
How to write this in coffeescript?
Thanks for any tips :) |
||||
|
|
|
While you can just use parentheses (e.g.
The most common use of
Without the |
|||||||||||||||||
|
|
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:
Then
|
|||
|
|
|
Apologies, I solved it:
|
|||||||||||
|