InterviewSolution
Saved Bookmarks
| 1. |
What is provider in AngularJS? |
|
Answer» In Angular, a provider is a type of an object having a $GET() method. In this, the injector is USED to calls the $get method for creating a NEW instance within a service. The provider in AngularJS allows users to create a configurable service in which an INPUT can be used to set on each application for the service CREATED using the provider() function. |
|