0 votes
in Angular by
What is the difference between a provider, a service and a factory in Angular?

1 Answer

0 votes
by

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

0 votes
asked Jun 12, 2022 in Azure Data Factory by SakshiSharma
+1 vote
asked Jan 15, 2020 in Angular by rahuljain1
...