Methods for Concatenating Strings in JavaScript

2 years ago

Introduction There are several methods for concatenating string in javascript. Today we are going to understand 5 methods which I…

Deploying a Node.js application to AWS EC2 with NGINX and PM2

2 years ago

Introduction Deploying a Node.js application using the AWS platform is possible. In this blog post, we will show you how…

What is Amazon Lightsail, and why it’s a better option for beginners

2 years ago

Introduction Amazon Lightsail is a web hosting service that allows you to launch and manage AWS infrastructure on the cheap.…

Top VueJS Interview Questions and Answers

2 years ago

Introduction VueJS is a framework which lets you build single page applications (SPAs) using HTML, CSS, and JavaScript. It uses…

Use EsLint, Prettier and Husky to help you format your code

2 years ago

If you’re like me, then you probably write code all day long. You probably also have a pretty messy and…

How to Fix AWS LightSail WordPress File permissions

2 years ago

Recently I moved my website from CPanel hosting to Lightsail hosting. As everyone know lightsail is cheaper than EC2 also…

forEach, map, filter and reduce in JavaScript Array – Code Example

2 years ago

Reduce, Map, Foreach and Filter are all array methods in JavaScript. Each iterates over an array and performs a transformation…

How can I add a key/value pair to an JavaScript object?

2 years ago

In this article, you will learn how can I add a key/value pair to an JavaScript object. To understand this…

How to check value exists in an array using Javascript?

2 years ago

In this tutorial you will going to lean some method to check value exists in an array using JavaScript. Method…

What is useRef hook in React?

2 years ago

In this post we’ll cover what is useRef Hook in React. The useRef hook is new in React 16.8. Before…

What is useContext Hook in React with Simple Example

2 years ago

Now a days react coming with hooks functions. We already learn about useState, useEffect hooks in our previous article. Today…

What is useEffect Hook in React with Simple Example

2 years ago

So we learned about useState() hooks in previous article. Today we are going to learn about most important reactjs hooks…