Angular Handling not found routes in Angular In this post, we will see how we can handle 404 routes using a not found component in an Angular. There are two types of 404 routes that we want to handle: * Static 404 - the URL the user navigates to doesn't match any route; * Dynamic 404 -
Angular How to access route params from parent routes in Angular If you've used the Angular router, you might have run into this problem. When you have a tree of routes, you might need to access route parameters from a parent inside a child.
Angular How to use Angular OnPush Change Detection One of the most common suggestions for improving performance in Angular is using the OnPush change detection strategy. While it does improve performance, it can lead to unwanted behavior if you're not aware of how it works.