What are the main advantages of MVC pattern?
Provides clean separation of concerns(SoC) between UI(Presentation layer), Model(transfer object/domain object/entities) and Business logic(Controller). Enables Test Driven Development (TDD)./Easy to unit test. Easy integration with JavaScript...