Streamlining Pagination in TypeScript: An Efficient Paginator Class
Enhancing Frontend Performance Through Abstraction and Caching
Nov 22, 20243 min read32

Search for a command to run...

Series
This series shares my journey through frontend development, focusing on React, JavaScript, TypeScript, and NextJS. Each article distills insights and skills I’ve picked up, aiming to help complex topics approachable.
Enhancing Frontend Performance Through Abstraction and Caching

Introduction Looping is one of the essential features of any programming language, and JavaScript is no exception. Coming from a C# background, I am familiar with the IEnumerable interface, which allows a class to be iterable. JavaScript provides a s...
