DEV Community

Discussion on: React - ES6 tricks in Classes

Collapse
 
rkichenama profile image
Richard Kichenama

Using arrow functions for members defined that way allows for this to remain scoped to the instance of the class / object. It is possible to define it as handleChange = function () { ... }, but then you would need the constructor to bind handleChange to the instance.