AMAbhisek Mohapatrainblog.utkallabs.com·Jun 28, 2025 · 3 min readGenerics in TypescriptDefinition :) A TypeScript generic can be defined as a programming feature that enables the creation of reusable components and functions capable of working with various data types without sacrificing type safety. By allowing the specification of typ...00
AMAbhisek Mohapatrainblog.utkallabs.com·May 1, 2025 · 3 min readUnderstanding Virtual DOM 🆚 Real DOM in ReactIntroduction 📖 In the ever-evolving landscape of web development, React has emerged as a powerhouse, transforming how developers build user interfaces. At the heart of React's efficiency lies a fascinating duo – the Virtual DOM and the Real DOM. In ...00
AMAbhisek Mohapatrainblog.utkallabs.com·Apr 15, 2024 · 2 min readSay Hello To "Object.groupBy();"Introduction📍 Hello dev mates, today I am sharing about the Object.groupBy() method which was recently introduced by Javascript, Basically what it is doing like its grouping the elements of an iterable(such as an array). Syntax 📌 Object.groupBy(ite...00
AMAbhisek Mohapatrainblog.utkallabs.com·Oct 29, 2023 · 1 min readJavascript Accessors in action 🚀While discussing with my friends I came across one interesting question which excites me to create this blog entry. The question was, how the following conditions get satisfied to print the text in the console. How I solved it? 💡 Let's solve this w...00W