In web applications, virtual scrolling is used to render and display large lists or grids efficienty. Angular Material, a popular UI component library for Angular, provides built-in support for virtual scrolling. Let’s understand virtual scrolling, it’s benefits, and how to implement it using Angular Material. What is Virtual Scrolling? Virtual scrolling renders only the visible…
Category: Angular and Javascript Interview questions
This categoy has all post related to Javascript and Angular interview questions and topics
Javascript Maps vs Objects
Initially, when I read about Maps, I had this question running in my mind. Why use Javascript Maps, when objects serve the same purpose? Unanimous answer found in most of the websites is the reduction of complexity. Let’s dive into this in detail. In a Nutshell, Maps hold key-value pairs and have below…