RORodgers Ogadainogadar.hashnode.dev·Feb 7, 2024 · 4 min readUsing JavaScript's split() MethodScenario Most websites nowadays send password reset links to their users' emails. The user clicks on a tokenized link and they are redirected to a new page with a form to enter and confirm their new password. This token is usually generated in the se...00
RORodgers Ogadainogadar.hashnode.dev·Jan 24, 2024 · 4 min readUsing React Custom HooksScenario I'm tasked with handling the logout logic for our React application. We have a redux store that stores a user's state once we pass a JWT token upon login. Simple right? What are hooks and and custom hooks? Hooks In React, a hook is a special...00
RORodgers Ogadainogadar.hashnode.dev·Jan 11, 2024 · 2 min readDebouncing in ReactThink of this scenario: You navigate to a listing page for books or properties and want to search based using a name. Each time you hit the keyboard, a search request is effected. Say you want to search for the word "court"; each keystroke will send...00