Posts by Samim

Author Biographical Info: Not available

Call a user-defined function onclick event in JavaScript

By Samim

In this tutorial, I will show you how to call a user-defined function onclick event in JavaScript. First of all, I need to create an HTML form with a button that users have to clic.... Read More

Call function from one JS file into another JS file in JavaScript

By Samim

This tutorial will show you how to call a function from one JavaScript file into another Javascript file. First, I will create a button in HTML to show the result in browser. <i.... Read More

Generate array with random numbers in JavaScript

By Samim

In this tutorial, you will see how to generate an array with random numbers in JavaScript. For this purpose, I am going to use math.random function which generates a random value. .... Read More

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