Abolfazl
Front-end Developer
I'm a frontend developer, optimist, and supportive team player. I love creating and presenting content about JavaScript, TypeScript, React, Next.js and more. In addition, I love doing new and exciting things beyond the screen like riding a bike or spending my time in nature.
latest blogs
see all- Nov 10, 2024
useEffect - Deep Dive Into It
Understand useEffect completely and handle your side effect easily. Effects let you specify side effects caused by rendering itself, rather than by a particular event. Generally speaking, effects help...
- Aug 21, 2024
useRef vs. useState - When to Use Each?
Whenever we use useState we are telling React that this data is special to us. Please, remember it between renders so I may use it. In our code above, we want to remember the isModalOpen data.