عرض المشاركات من نوفمبر, ٢٠٢٢
In this blog post, I will show you some cool ways to convert an object array to a dictionary i.e key-value pair. In other ways group the object by the key and return the data For example, I have the following list of objects whi…
Trie is a node-based data structure. It is used to implement word lookups. It is better than the use of HashTable because it can store efficiently sorted data and don’t have to use a sorting algorithm while retrieving data. We’…
In this blog post, I will discuss HttpInterceptor in more detail. What is # HttpInterceptor in Angular HttpInterceptor is a component in Angular that intercepts requests and responses in the angular application. Where to us…