It seems like CoffeeScript automatically returns the last item in a scope. Can I avoid this functionality?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
You have to explicitly return nothing, or to leave an expression evaluating to undefined at the bottom of your function:
Or:
This is what the doc recommends, when using comprehensions:
You could, however, write a wrapper like this:
(Notice the splat operator here ( And use it like this when defining functions:
Or like this:
|
|||||||
|
|
It seems functions in CoffeeScript must always return something, even |
|||
|
|