Articles
-
Transform objects using array methods
Objects don't have corresponding methods for .map or .filter. Fortunately we can achieve the same result using other built-in methods
-
Optional vs. undefined: Typescript's required properties
Learn the differences between optional properties and union types with undefined in TypeScript. Explore practical examples for enforcing required properties
-
Everything you need to know about HTML lists
Why many developers tend to overlook the different types of lists that are available in HTML beyond the basic unordered list
-
Git rebase vs git merge - comparison
When it comes to managing changes in a Git repository, two of the most commonly used commands are merge and rebase - two ways of solving the same problem
-
Remove all styling with one line of CSS
Would you believe me if I told you that you can remove all the default styles with one line of CSS? See how to remove all styling in CSS.
-
Typescript type guards - how to use them?
Become a TypeScript Hokage with these type guard tricks! Learn how to use type guards and write your own.
-
Redirect to a page from Next.js API Route
Learn how to implement page redirection for users who sign up for your newsletter using Next.js API routes in a few simple steps
-
Display a preview of an image upload in React
In this article, we will explore two different ways to display a preview of an image that has been uploaded in a React application.
-
Mastering function overloading in Typescript
Function overloading in TypeScript allows multiple functions with the same name to exist within a single program, but with different type signatures
-
How to use alt text in accessible images
Learn why the use of alternative text (alt text) for images is an important aspect of creating accessible web pages