PinnedPublished inWeb Development with sumit10 RxJS operators which I use daily as an Angular developerAs an Angular developer, you might find the following RxJS operators useful in your daily development:Mar 17, 20234Mar 17, 20234
PinnedPublished inWeb Development with sumitClosures in Javascript and its applicationsClosures are a fundamental concept in JavaScript, and they are used extensively in modern programming. Simply put, a closure is a function…Apr 14, 2023Apr 14, 2023
PinnedPublished inFrontend WeeklyOptimize your Angular app with trackByFirst, let’s understand why trackBy is important. When you use the ngFor directive to render a list of items, Angular uses the identity of…Mar 22, 20231Mar 22, 20231
PinnedResolver In AngularIn Angular, a resolver is a type of service that helps to fetch data asynchronously before a route is activated. Resolvers are used to…Mar 15, 20231Mar 15, 20231
React Optimization TechniquesHere’s a detailed overview of key React optimization techniques, focusing on functional components in particular. By implementing these…4d ago4d ago
Published inJavaScript in Plain EnglishEvent-Driven Programming in Node.jsEvent-driven programming is a programming paradigm where the flow of the program is determined by events — such as user actions (clicks…Oct 22Oct 22
Published inJavaScript in Plain EnglishWhy [‘1’, ‘5’, ‘11’].map(parseInt) returns [1, NaN, 3] in JavascriptLet’s go through the example ['1', '5', '11'].map(parseInt) in JavaScript step by step to understand why it returns [1, NaN, 3] instead of…Sep 29Sep 29
Published inJavaScript in Plain English📊 State Management in React: Redux vs. Context API ⚛️In React applications, managing the state is crucial for maintaining the consistency and scalability of the app. React’s internal state…Sep 24Sep 24
Published inJavaScript in Plain EnglishMastering Cross-Origin Communication in JavaScript with window.postMessage()To understand the usage of window.postMessage() in JavaScript, it's crucial to grasp what the method does and why it's important in modern…Sep 6Sep 6