Files
30-seconds-of-code/glossary/MVC.md
2019-08-13 11:19:29 +03:00

338 B

title, tags
title tags
MVC 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.