Font Awesome is a great resource to use various types of icons in your project including well-known social media icons…
I was recently trying to comment out some logic inside my JSX to add context about what a potentially complex…
One of the practices of clean code is to make it more readable. And a fairly common use case in…
Chrome devtools has a collection of utilities that can be used to perform common debugging tasks and make our life…
For as long as anyone can remember, deep copying in JavaScript was not a built-in feature and we had to…
When it comes to debugging JavaScript in Chrome devtools, there are two different camps: the console.log fans and the debugger/breakpoint…
npm configurations allow us to do quite a lot of nifty things. One of them is to allow the project…
Zombie processes are usually a pain to figure out. More often than not, I end up googling about how to…
As dark themes have become popular across the web and across operating systems, we might want to check the user's…
String.prototype.split() is a valuable method to split strings based on a delimiter. There often comes a scenario when we want…