Saved Bookmarks
| 1. |
What do the services represent in AngularJS? |
|
Answer» SERVICES are SINGLE objects which carry out TASKS they are created for. They interact with each other and are wired by using the concept of Dependency Injection that helps the FRAMEWORK in organizing and sharing the code across the application. There are various in-built services provided by AngularJS. AngularJS also supports the creation of custom services that are more COMMONLY used by developers. |
|