Comment by salauddin on "In angular, whenever I create a service and use it multiple components using dependency injection. Does service instantiated every time I use in multiple component?" | Hashnode
No it doesn't. In Angular (2.x and up) if you use it in app.module, service will be instantiated only once and it will be used by all components that belongs to that module.