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