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.