How to Check Whether a String Contains a Substring in JavaScript?

How to check whether a string contains a substring in JavaScript? let str = “Hello, world!”; let substr = “world”; console.log(str.includes(substr)); // Output: true You can also use the indexOf() method which returns the index of the first occurrence of the substring in the string, or -1 if the substring is not found. Here’s an … Read more

How Can I Remove a Specific Item From an Array in JavaScript?

There are several ways to remove a specific item from an array in JavaScript. Here are a few common approaches: Using the splice() method: This method modifies the array on which it is called, and it takes two arguments: the index of the item to be removed, and the number of items to be removed. … Read more

How to Create a Weight Converter using JavaScript

Create a Weight Converter using JavaScript

Do you want to create Weight Converter by JavaScript? In this article you will learn how to create Weight Converter using html css and javascript. Earlier I showed how to create a height converter using JavaScript. This Weight Converter is very simple and easy. Sometimes such a weight converter is needed to convert a specific … Read more

How to Create Scratch Card using JavaScript & HTML

Scratch Card using JavaScript

From this article you will know how to make scratch card using html css and javascript. Here you will find complete step by step tutorial to make JavaScript Scratch Card. Scratch Card We mainly see coupons or gift cards in many websites. Where the user can see the hidden information by scratching the card. Earlier … Read more

Automatic Multiple Image Slider in HTML CSS

In this article you will learn how to create automatic multiple image slider using HTML and CSS.

In this article you will learn how to create automatic multiple image slider using HTML and CSS. I have shared many types of Automatic Image Slider tutorials with you before. But they were simple designs. Here I show how to create simple automatic multiple image slideshow. Here I have not used any javascript or jquery … Read more

How to Create a Todo List Using JavaScript (Free Code)

How to Create a Todo List Using JavaScript

In this article, you will learn how to create JavaScript Todo List. You can easily create this Todo List using HTML CSS and JavaScript. If you are a beginner then this simple todo list project will help you a lot. Here I have shared step by step tutorial and all the necessary information. Earlier I … Read more

How To Create A Meme Generator Using JavaScript

In this article you will know How to Build a Meme Generator with JavaScript.

In this article you will know How to Build a Meme Generator with JavaScript. I used html css javascript to create this Meme Generator. Earlier I have shared with you many types of JavaScript project tutorials. This is a simple meme generator where you can show any website meme here through API link. It is … Read more