Nikitasha Shrivastava has Published 195 Articles

Generating desired combinations in JavaScript

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 14-Aug-2023 17:58:01

229 Views

In the given problem statement we have to generate the desired combinations of the given inputs. And program the solution with the help of Javascript programming . Understanding the Problem In this problem, we will be given integers from 1 to 9. Each combination should be a unique ... Read More

Function for counting frequency of space separated elements in JavaScript

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 14-Aug-2023 17:55:26

162 Views

In this problem statement, our target is to create a function for counting frequency of space separated elements with the help of Javascript functionalities. Understanding the Problem The given problem is stating that we have given a space separated elements and our task is to count the ... Read More

Finding the smallest multiple in JavaScript

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 14-Aug-2023 17:51:05

317 Views

In the given problem statement we have to find the smallest multiple of the given numbers with the help of Javascript functionalities. So we will use loops to iterate through and check the multiples of the given numbers. Understanding the Problem The problem at hand is to find ... Read More

Finding the nth prime number in JavaScript

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 14-Aug-2023 17:48:50

4K+ Views

In the given problem statement our task is to find the nth prime number with the help of Javascript functionalities. So we will use two functions to solve this problem. Understanding the Problem The problem at hand is to find the nth prime number using the Javascript programming. ... Read More

Finding the largest prime factor of a number in JavaScript

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 14-Aug-2023 17:45:04

710 Views

In the given problem statement we have to find the largest prime factor of a number with the help of Javascript functionalities. So we will solve this problem with the help of basic functionalities of Javascript. Understanding the Problem The problem at hand is to find the largest ... Read More

Finding the largest and smallest number in an unsorted array of integers in JavaScript

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 14-Aug-2023 17:42:05

4K+ Views

In the given problem statement we have to find the largest and smallest number in an unsorted array of integers with the help of Javascript functionalities. So we will use an array of integers and find the smallest and largest number from the array. Understanding the Problem The ... Read More

Finding sum of multiples in JavaScript

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 14-Aug-2023 17:39:01

2K+ Views

In the given problem statement we have to find the sum of the multiples of the given input number within the given range with the help of Javascript functionalities. So we will use a loop to iterate through the numbers from the starting range to the ending range. Understanding ... Read More

Finding all the Longest Strings from an Array in JavaScript

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 14-Aug-2023 17:36:07

538 Views

In the given problem statement we have to find all the longest strings from an array with the help of Javascript functionalities. So basically this task can be done by getting the length of each string and then comparing these lengths with the maximum length. Understanding the Problem ... Read More

Finding all duplicate numbers in an array with multiple duplicates in JavaScript

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 14-Aug-2023 17:27:51

623 Views

In the given problem statement we have to find all duplicate numbers in an array with multiple duplicates with the help of Javascript functionalities. So we will use basic Javascript tot solve this problem. Understanding the Problem The problem at hand is to find the duplicate numbers in ... Read More

Find the largest palindrome number made from the product of two n digit numbers in JavaScript

Nikitasha Shrivastava

Nikitasha Shrivastava

Updated on 14-Aug-2023 17:25:08

213 Views

In the given problem statement we have to find the largest palindrome number made from the product of two n digit numbers with the help of Javascript functionalities. So we will create two functions to do this task. First function is to find the largest palindrome number and the second ... Read More

Advertisements