What is the alternative of binding this in the constructor? Technology Community › Category: React › What is the alternative of binding this in the constructor? 0 Vote Up Vote Down VietMX Staff asked 4 years ago You can use property initializers to correctly bind callbacks. This is enabled by default in create react app. You can use an arrow function in the callback. The problem here is that a new callback is created each time the component renders.