Yesterday I learned some new concepts in React. Let's start by: Prop Drilling! 🤯 You know you're Prop Drilling when you're passing props deep down...
Introduction Having an ugly website is a sin that often doesn’t go unpunished. The punishment involves getting mediocre results to bad publicity. I...
Keeping UI in sync with data is one of the primary goals of React library. React achieve this by re-rendering the UI whenever there is a change in...
This is a quick demo explaining when & how to use JavaScript Array.from() method. Suppose you want to write an array containing numbers from 1 to 100....
Let's say this is my React form component: function Form() { function handleSubmit(e) { e.preventDefault(); } return ( <form...
Lesser Known Form Of Procrastination A subtle form of procrastination that most people often don't talk about is overpreparation. This is not a type...