COChisom onwuchekwainchekwas88.hashnode.dev·Nov 8, 2021 · 2 min read### The useLayoutEffectAs a react developer, there is a huge chance you have heard about and made use of useEffect, which is a hook that lets you perform a side effect in a function component. What if you want to read layout from the DOM and synchronously re-render? useLay...00
COChisom onwuchekwainchekwas88.hashnode.dev·Sep 26, 2021 · 5 min readUsing the useReducer HookOften times as react developers we are conflicted about which hooks to use to manage the internal state of our component. When to use useState or useReducer. So far in my experience, I have seen so many codebases that make use of useState and for so...00
COChisom onwuchekwainchekwas88.hashnode.dev·Aug 25, 2021 · 3 min readIntroduction To Array's Linear Search Methods.Array is an important data type in most programming languages. As programmers, we make use of arrays frequently. Array provides a lot of methods. We will be looking at the methods for linearly or sequentially searching item(s) in an array. What is L...00