Is there any reason to write classic syntax of ES6 methods?
class MyClass {
    myMethod() {
        this.myVariable++;
    }
}
When I use myMethod() as callback on some event, I must write something like this (in JSX):
// Anonymous function.
onClick={() => { this.myMethod(); }}
// Or bind this.
onClick={this.myMethod.bind(this)}
But if I declare method as arrow function:
class MyClass {
    myMethod = () => {
        this.myVariable++;
    }
}
than I can write just (in JSX):
onClick={this.myMethod}
 
     
    