I am creating a backbone view with custom events. If I remove the backbone view, the remove process unsubscribe the events or I have to manually unsubscribe the events.
Similarly, I created a master view with some child views. If I remove the master view, will all my child events will unsubscribe or I have to unsubscribe the child events and unsubscribe the master view events.
Please suggest me an approach where I can remove the views in a proper order so that no memory leaks will happen.