0 votes
in Angular by
Can you draw a comparison between the service() and the factory() functions?

1 Answer

0 votes
by

Used for the business layer of the application, the service() function operates as a constructor function. The function is invoked at runtime using the new keyword.

Although the factory() function works in pretty much the same way as the service() function does, the former is more flexible and powerful. In actual, the factory() function are design patterns that help in creating objects.

...