5 React hooks that you should know
A quick info about 5 react hooks

Search for a command to run...
A quick info about 5 react hooks

useRef Hook helps to create a direct reference to the DOM element, so we can access it and modify, like the JavaScript document.querySelector method. const refContainer = useRef(initialValue); It returns an object which has a property called .curren...

Well, what does this useEffect Hook does? To simply put, it helps us to do something after our component has rendered. React will run this after it has updated the DOM. So useEffect does not block the browser from rendering, but it is run after perfo...

Couldn't understand closures? Let's clear this.

The most simple explanation

So you are into JS, and have been wondering how JS works? Well, you are at the right place. Welcome aboard!
