how to use services in angular code example
Example 1: services in angular
ng g service service_name
Example 2: how to inject service in component angular 6
you can inject service in components constructor:
constructor(public anyService: Service){}
Example 3: services in angular
ng generate service Time