Question - How to bind methods or event handlers in JSX callbacks?
Answer -
Binding in Constructor: In JavaScript classes, the methods are not bound by default. The same thing applies for React event handlers defined as class methods. Normally we bind them in constructor.