7 Tips To Become a Better ProgrammerBecoming a better programmer is a journey of continuous learning and growth. Here are 7 tips to help you level up your coding skills and thrive in the tech world: 1. Practice Consistently Set aside regular time for coding practice. Consistency is cri...Aug 26, 2023·2 min read
Add One Day to Date in JavaScriptLearn how to add one day to date in JavaScript using the native date object. How to Add 1 Day to Date in JavaScript? The best way to add 1 day to a JavaScript date is by using the Date object. On an existing Date, you can use the getDate function to ...Dec 21, 2022·2 min read
React Router — Redirect to an External URLDiscover how to use React Router to link to an external URL, thanks to the Link component or an HTML anchor tag (<a>). How to Add an External Link With React Router? You can use the Link component or an HTML anchor tag if you want to redirect to an e...Sep 24, 2022·3 min read
Get URL Params in ReactThis article will show you three ways to get URL params in React (with React Router V5, V6, and without). How to Get URL Parameters in React? The best way to get URL parameters in React is to use the library “React Router”. Thanks to a set of functio...Sep 19, 2022·4 min read
Array to String Without Commas in JavaScriptIn this article, you’ll discover how to convert an array to a string without commas. By no commas, I mean no separator between your array elements (words) or a separator different than a comma. How to Convert Array to String Without Commas In JavaScr...Sep 18, 2022·2 min read
Remove Null Values From Array in JavaScriptHere’s how you can remove null values from an array in JavaScript. I will show you two methods, the first one with pure JavaScript and the array filter method and the second one with Lodash. Remove Null Values from Array With Pure JavaScript I recomm...Sep 17, 2022·2 min read