DEV Community

Discussion on: Using arrow function to define a method

Collapse
 
zeerorg profile image
Rishabh Gupta

I think it's more important to be consistent. If you are using arrow functions to define Class methods, then all class methods should be arrow functions. Similarly if you are using arrow functions for object literals then you should stick with them.

Though, for best practices I usually try to stick with the constraints you have defined. And then keep them consistent across the project.