Posts from JavaScript

Convert speech to text in JavaScript

By Samim

This tutorial will show you how to convert speech into text in JavaScript using Speech recognition which is a Web Speech API. For this purpose, we have to capture the speech of the.... Read More

Add watermark to image in Node.js

By Samim

This tutorial will show you how to add image or text watermark to an image in Node.js. In some of the photos, you have seen text, images, logo, and pattern which is superimposed in.... Read More

Convert Text to Speech in JavaScript

By Samim

In this tutorial, I will explain how to convert text to speech in JavaScript using SpeechSynthesisUtterance. We can simply do this in JavaScript but to make it easier to understand.... Read More

Alert, prompt, confirm in JavaScript

By Samim

In this tutorial, I will discuss alert, prompt, and confirm in JavaScript. We will see how alert, prompt, and confirm work. These are built-in JavaScript methods. In the browser, t.... Read More

Conditional expressions in JavaScript

By Samim

In this tutorial, I am going to explain conditional expression in JavaScript. There are a lot of cases, where we can use conditional expressions depending upon our needs. Here are .... Read More

Trim a string in JavaScript

By Samim

In this tutorial, I am going to discuss about three different string methods those are trim(), trimstart(), and trimend(). Those three methods are going to be used to remove the wh.... Read More

Get the coordinates of the cursor in JavaScript

By Samim

This tutorial will show you how to get the coordinates of the cursor in JavaScript. First of all, let’s create our HTML element which shows us the position coordinates of the.... Read More

Convert array elements to Uppercase or Lowercase in JavaScript

By Samim

This tutorial will show you how to convert array elements to Uppercase or Lowercase in JavaScript. Convert all array elements to uppercase: To transform each element of the array u.... Read More

Related Posts