When building a class in CoffeeScript, should all the instance method be defined using => and all the static methods being defined using -> ?
Thanks
|
When building a class in CoffeeScript, should all the instance method be defined using => and all the static methods being defined using -> ? Thanks |
|||
|
|
No, that's not the rule I would use. The major use-case I've found for the fat-arrow in defining methods (and it's a very common one in our code-base!) is when you want to use a method as a callback and that method references instance fields:
As you see, you may run into problems passing a reference to an instance's method as a callback if you don't use the fat-arrow. This is because the fat-arrow binds the instance of the object to |
|||||||||||||
|
|
Usually,
Note how the static method return the class object for What's happening is that the invocation syntax is providing the value of
In both of those cases, using a fat arrow to declare that function would allow those to work. But unless you are doing something odd, you usually don't need to. So use |
|||||||||||
|