Typescript Access ModifierIn TypeScript, you have several access modifiers (private, protected, and public) that help control the visibility and accessibility of…Jul 271Jul 271
When to use OOP and When to Use Functional Programmingwhen he deals with data about people, FP works well, but when he tries to simulate people, OOP works well.Jul 24Jul 24
OOP vs Functional ProgrammingThere’s no single “better” choice between Object-Oriented Programming (OOP) and Functional Programming (FP). They are both powerful…Jul 8Jul 8
When To Use useContext vs custom hooksI wanted to share what I mean when I say that useContext and custom hooks are not the same. Upon finishing my app’s primary features, I…May 21May 21
React folder structureReact doesn’t have opinions on how you put files into folders. That said there are a few common approaches popular in the ecosystem you may…May 3May 3
SSR vs CSR vs SSGArchitecture is how we design and build JavaScript applications. Understanding this is important to create robust and manageable…May 3May 3
Classes TypeScriptIt will return error because we need to initialize the property with value.Apr 30Apr 30
Javascript DecoratorsDecorator is a way to add additional functionality to functions or objects in JavaScript without modifying their original code. It allows…Apr 30Apr 30