Two-way data binding (Angular) vs one-way data flow (React/Flux)
Angular’s two-way data binding It’s made possible by a mechanism that synchronizes the view and the model whenever either change. In Angular, you update a variable and its change detection mechanism will take care of updating the view, and viceversa. What’s the problem? You don’t control the change detection mechanism. I found myself having to … Read more