Service

Angular services are used to share logic and data between components.

Snippet:

@Injectable({ providedIn: "root" }) export class DataService { getData() { return "Hello from service"; } }

Example:

@Injectable({ providedIn: "root" }) export class ApiService { fetchData() { return fetch("/api/data").then(res => res.json()); } }