React19 : What can we expect?React team have been working on next improvement in the library. The new release will be introduced on May 15–16 on new version launch of…Feb 25Feb 25
Scope & ClosureHey folks, here in this blog I am summarizing second part of You don’t Know JS book series by Kyle Simpson.May 22, 2023May 22, 2023
Dependency Inversion PrincipleThis is last blog on SOLID design principle series. In this blog I’ll write about Dependency inversion principle. For dependency inversion…Mar 30, 2023Mar 30, 2023
Interface Segregation PrincipleMake fine grained interfaces that are client (component) specific. Clients should not be forced to implement interfaces they don’t use. —…Mar 29, 2023Mar 29, 2023
Liskov Substitution PrincipleLiskov Substitution principle states “Derived class must be substitute of parent class.” In JS method of child component must be exact…Mar 27, 2023Mar 27, 2023
Open-Closed Principle“Software entities (classes, modules, functions, etc.) should be open for extension, but closed for modification.”Mar 22, 2023Mar 22, 2023
Single Responsibility PrincipleWhile we can write code, it is very crucial to write clean code. And to write better code we can follow SOLID design principles. That will…Mar 20, 2023Mar 20, 2023
useCallback and useMemoWhenever we set state in react application our component re-renders. This might cause performance issues especially in large application…Jan 31, 2023Jan 31, 2023
Function & BlockIn JavaScript the most commonly used scope is function. With each function we create a scope for itself.Oct 27, 2022Oct 27, 2022
What is ScopeWithout variable a program can only perform a small amount of tasks. The ability to store values and pull values out of variable gives a…Sep 30, 2022Sep 30, 2022