Posts by HETVI JAIN

Author Biographical Info: Not available

Get selected value in dropdown list using JavaScript

By HETVI JAIN

In this article, we will focus on how to get the selected value in the dropdown list in JavaScript.There are two ways to achieve that. Using Value Property Using selectedIndex prop.... Read More

Node.js callbacks in exported modules

By HETVI JAIN

In this tutorial, we will see how to use callbacks in exported modules. This is a very important concept and one of its applications is error handling. We will be using an import a.... Read More

How to Expire session after a specific time of inactivity in Express.js

By HETVI JAIN

In this article, we will learn how to expire the session after a specific time of inactivity in Express.js. For this, we would be requiring an express-session module. Expiring a se.... Read More

How to export multiple functions in JavaScript

By HETVI JAIN

In this article, we will learn about the export module in JavaScript. It allows you to export different sections of files into other files so that we can utilize the function in th.... Read More

Split a string breaking at a particular character in JavaScript

By HETVI JAIN

In this article, we will how to split a string at a particular character in JavaScript. We shall demonstrate this using two different techniques. split() function. using for loop. .... Read More

Convert HTML to PDF using Node.js

By HETVI JAIN

In this article, we will see how we will convert an HTML template to pdf in Node.js using a library called pdf-creator-node. We can download the pdf from our folder itself. Convert.... Read More

How to stop setInterval call in JavaScript

By HETVI JAIN

In this article, we will learn how can we stop the setInterval() method after invoking it. This method is used to call the function specified repeatedly after the given time interv.... Read More

How to add a new line in JavaScript string

By HETVI JAIN

String Manipulation is very easy to understand but it is very difficult to master it. Adding a new line in JavaScript string We will see different ways in which we can add a new li.... Read More