Model-View-Controller Pattern

Learn about the famous model-view-controller architectural pattern.

We'll cover the following...

Introduction

Every application code can be viewed or organized into three parts:

  • View: Some code that will define the user interface that a user will interact with.
  • Model: A
...