Convert String Array to int Array. JavaScript Code: const arrOfStr = ['1', '2', '3']; const...
Category - JavaScript
Program To Find Largest Number Among Three Numbers In JavaScript
To find the greatest of three numbers in JS, these three numbers must be taken as the input from...
How can I control audio and video in HTML using a JavaScript API
Not long ago, adding a video to a web page implied quite a lot of work (and a bit of luck) as...
Create and add content to popups using JavaScript
Popups can be useful Let’s face it. Popups are not a nice browser feature and they can be very...
Input an integer (n) and computes the value of a+aa+aaa in JavaScript
Write a program that computes the value of a+aa+aaa+aaaa with a given digit as the value of a in...
💪 Basic BMI Calculator HTML/Javascript
JavaScript program to calculate Body Mass Index (BMI) The Body Mass Index (BMI) is a quick way to...
Greatest Common Factor Calculator in JavaScript
Greatest common factor (GCF) calculator. Is also known as greateset common divisor (GCD). GCF...
Reverse an Integer in JavaScript
JavaScript program to reverse the number entered by the user, then displays the reversed number on...
JavaScript Program to Find GCD of Two Numbers
In this program, we’ll learn to find Greatest Common Divisor (GCD) of two numbers in JavaScript...
Using RegEx(Regular Expressions) in JavaScript
Javascript has built-in support for regular expression in almost all browsers. This means you can...
Animated Progress Bar without Images
These don’t contain any images. They all are pure JavaScript based progress bars. They uses...
Customized Html Controls: Creating Custom Checkbox
Under “Customized Html Controls” section I will discuss about how to create and customized standard...
JavaScript Exception Handling Techniques
Like the Object oriented programming the exception handling is also not used while coding in...