10 followers
A front end developer that loves to build and help others build stuff.
Subscribe to my newsletter and never miss my upcoming articles
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...
If you've spent any time learning Javascript you've probably seen three ways to declare a variable. This guide will show you an in depth look at the behaviors of 'var', 'let' and 'const'. Afterwards, you'll be setting variables appropriately and conf...
Idea: Design a responsive login form. Save to localStorage if the user successfully logged in. Bonus points if you build it with authentication. Focus: form authentication, responsive design, styling, state management Login forms are everywhere and ...