+1 vote
in Angular by
What are the Angular Modules?

1 Answer

0 votes
by

All the Angular apps are modular and follow a modularity system known as NgModules. These are the containers which hold a cohesive block of code dedicated specifically to an application domain, a workflow, or some closely related set of capabilities. These modules generally contain components, service providers, and other code files whose scope is defined by the containing NgModule.  With modules makes the code becomes more maintainable, testable, and readable. Also, all the dependencies of your applications are generally defined in modules only.

Related questions

0 votes
asked Nov 24, 2019 in Angular by rajeshsharma
0 votes
asked Nov 24, 2019 in Angular by rajeshsharma
...