#codenewbies
Read more stories on Hashnode
Articles with this tag
What is the useRef hook? The useRef hook is one of the most used hooks in react. It returns an object with a single property called .current. With...
Introduction The useContext hook works with the Context API in React. It allows you to consume data across many components in your app. To understand...
What is the useEffect hook? The useEffect hook handles side effects in React. A side effect happens when you interact with something outside the scope...
What is the useState hook? The useState hook allows you to add state variables to functional components. Using the useState hook, you can do the...
Introduction What do you do when you want a variable to be able to take more than one type? You use union type. Union types enable you to create a...
A TypeScript Series for beginners ยท Introduction In this lesson, we are going to learn about the any type in TypeScript. The any type is TypeScript...