This works:
myfunc = () ->
id: 3
name: 'myname'
But I want to be explicit about returning object.
myfunc = () ->
return
id: 3
name: 'myname'
But I get "Unexpected 'INDENT'" error. What's wrong with the above code?
|
This works:
But I want to be explicit about returning object.
But I get "Unexpected 'INDENT'" error. What's wrong with the above code? |
|||
|
|||||
|
|
you should put the return value on the same line or wrap it in
|
|||
|
|
|
The previous answers are all correct. This works too:
|
|||
|
|
|
I think the best way is
because it fits the philosophy of functional programming. |
|||
|
|
undefinedlike in JS. – flying sheep Jan 13 at 22:24