Files
30-seconds-of-code/glossary/MVC.md
Angelos Chalaris 6ce5437703 Create MVC.md
2018-08-30 13:18:09 +03:00

5 lines
317 B
Markdown

### MVC
MVC stands for Model-View-Controller and is a software design pattern, emphasizing separation of concerns (logic and display).
The Model part of the MVC pattern refers to the data and business logic, the View handles the layout and display, while the Controller routes commands to the model and view parts.