1 min read 57 words Updated Sep 24, 2026 Created Sep 24, 2026
#OOP#TypeScript#angular

Dependency injection is a broad concept in software development.
Here is a more general piece on dependency injection: Dependency Injection

In Angular, it is commonly used too.

@Injectable can be used for Services in Angular to inject them into components etc.

Injectis not to be confused with inject

Use inject()for injecting services in Angular.