in Angular by (6.5k points)
What is the difference between a provider, a service and a factory in Angular?

1 Answer

0 votes
by (31.6k points)

Provider Service Factory

A provider is a method using which you can pass a portion of your application into app.config A service is a method that is used to create a service instantiated with the ‘new’ keyword. It is a method that is used for creating and configuring services. Here you create an object, add properties to it and then return the same object and pass the factory method into your controller.

Related questions

+1 vote
0 votes
asked Aug 21, 2021 in Authentication by rajeshsharma (23.9k points)
...