819 followers
I'm a web/software developer who loves to build projects and share valuable tips for new programmers on this blog. Feel free to reach me via my email or Twitter!
Subscribe to my newsletter and never miss my upcoming articles
Hello everyone! Hashnode has proudly launched the #2Articles1Week challenge! How exciting! To commemorate the start of this challenge, I'm dedicating this post to Hashnode and the fellow writers on this platform who are also partaking in this challen...
Welcome to A Look at React Hooks, a beginner-friendly series on React Hooks. In this article, let's look at the useRef Hook. What is useRef? useRef returns a mutable object with a single property: current, that stores the value of the reference eleme...
Welcome to A Look at React Hooks, a beginner-friendly series on React Hooks. In this article, let's look at the useContext Hook. What is useContext? The useContext Hook works with React's Context API. Let's take a look how it works. It accepts a cont...
Welcome to A Look at React Hooks, a beginner-friendly series on React Hooks. In this article, let's look at the useEffect Hook. What is useEffect? If you are coming from the class-based React, the useEffect Hook replaces the componentDidMount, compon...
Welcome to A Look at React Hooks, a beginner-friendly series on React Hooks. In this article, let's look at the useState Hook. What is useState? This Hook is probably the most commonly used Hook. It allows us to declare, read and update a state varia...
Welcome to A Look at React Hooks, a beginner-friendly series on React Hooks. The purpose of this series is to gather and document some awesome Hooks that are not in the official React documentation. Hopefully, by including these Hooks, more developer...