
Cansu Üstünel


Interaction of Angular components: the ways components communicate with each other
In Angular, components can share data or trigger each other via communication, regardless of being related or not. There are various types of communication in which the components engage. …

Best practices of working with Angular components
Components are the fundamental building blocks of Angular applications. This article shares some common practices you should implement for more readable code and a more organized workspace. The topics …

The Basics of Angular Components: Their Purpose and Anatomy
Every Angular beginner can agree that components are one of the “first things first” into building your first app. Since Angular 2, components have been the core building blocks …

All you need to know about Angular events: Top conferences and meetups
Are you an Angular enthusiast? Did you know that there’s a big Angular community that holds various events that bring fellow Angular enthusiasts together? Angular has a rising popularity …

Why is inject() better than constructor?
The inject() function was introduced with Angular 14, as an alternative to declaration of dependencies via providers property and via passing them into the constructor. Nowadays it is widely …