Skip to content
Search

Archives: Blog

link to How to Sort an Array Alphabetically in JavaScript

How to Sort an Array Alphabetically in JavaScript

In this article, we will look at sorting an array alphabetically in JavaScript. We will cover both arrays with strings and arrays with objects. Sorting an Array with Strings When sorting an...

Continue Reading
link to How to Set Focus on an Input Element in React using Hooks

How to Set Focus on an Input Element in React using Hooks

In this tutorial, I will show you how to programmatically set the focus to an input element using React.js and hooks. We will use two hooks, useRef and useEffect. Set up the Project All you...

Continue Reading
link to Ant Design React Tutorial – Getting Started

Ant Design React Tutorial – Getting Started

Ant Design is a popular React UI library with many styled components ready for use. To get started, let's create a new react app from scratch: npx create-react-app ant-tutorial Open your...

Continue Reading
link to How to Connect MongoDB Atlas with Node js using Mongoose

How to Connect MongoDB Atlas with Node js using Mongoose

In this article, we are going to create a simple express backend. The express app will connect to a MongoDB database in the cloud with CRUD operations. We will use Mongoose to create models with...

Continue Reading
link to How to Format Dates in JavaScript (With Examples)

How to Format Dates in JavaScript (With Examples)

How to Create a Date We create a new date by newing up a Date object. There are four ways to initialize a Date object: #1 Empty constructor const date = new Date(); This will give you...

Continue Reading
link to Getting Started with JavaScript Linting in VS Code

Getting Started with JavaScript Linting in VS Code

In this article, I will show you how to get started with ESLint in Visual Studio Code. Linting tools automatically analyze your code for errors and formatting issues. This is great for keeping...

Continue Reading
Page 1 Page 2 Page 3 … Page 16 NEXT »

About Us

We are a team of passionate web developers with decades of experience between us.

This site will focus mostly on web development. We love writing and we want to share our knowledge with you.

Hope you'll enjoy and have fun coding!

© 2021 Copyright How to Create Apps