Description
Model-View-ViewModel. Facilitates a separation of development of the graphical user interface.
Where to use
- Modern Frontend Frameworks. \n
- Mobile Development.
Real World Example
React (View) + State (ViewModel).
Code Example
class MVVM:
def __init__(self):
pass
def execute(self):
print('Executing MVVM')
