16 followers
A front end developer that loves to build and help others build stuff.
Subscribe to my newsletter and never miss my upcoming articles
There may be times when you don't want to trigger renders when capturing data from the user. useState, by now, is a well known and handy hook since it was implemented in React 16.8. When setting our state variable with useState, it causes a render of...
Learn how to make your own component to handle conditional rendering in React.
In this article you'll find a method to use whenever you have a long string that may funk up your UI components. I was working on a list item component for a project and found a problem we run into a lot. What I have is a list of cards that bring in...
The filter array method creates a new array with all the items that pass the test given by the function you gave it. By the end of reading this article, you'll get a deeper understanding of how to filter arrays of numbers, strings and an array of obj...
Hey, if you're reading this, you're invited to help others break free from creative blocks. How? Just push a branch up to this repo. Easy. :D https://github.com/BrettThurs10/GoBuildThisStuff This list is great inspiration for developers needing to up...
Let's explore the majestic map array method and all it's glory. Keywords used in this article: array: a list-like object that one can traverse or modify (mutate) integer: a real number, not a string (text) index: the numerical position of an item i...