Modularity
We will cover modularity in this lesson.
We'll cover the following...
Most curly-brace programming languages provide some kind of modularity. Besides the fact that you can encapsulate data and operations together in objects, you can also use concepts like namespaces to group objects together and use modules.
Modules have a well-defined public interface, a set of properties and operations that can be accessed from ...