AmitDiwan has Published 10740 Articles

Replace words of a string - JavaScript

AmitDiwan

AmitDiwan

Updated on 14-Sep-2020 13:59:49

404 Views

We are required to write a JavaScript function that takes in a string and replaces the adjacent words of that string.For example: If the input string is −const str = "This is a sample string only";Then the output should be −"is This sample a only string"Let’s write the code for ... Read More

Take two numbers m and n & return two numbers whose sum is n and product m in JavaScript

AmitDiwan

AmitDiwan

Updated on 14-Sep-2020 13:57:55

224 Views

We are required to write a JavaScript function that takes in two numbers, say m and n and returns two numbers whose sum is n and product is m. If there exist no such numbers, then our function should return falseLet’s write the code for this function −Exampleconst perfectNumbers = ... Read More

Delete duplicate elements based on first letter – JavaScript

AmitDiwan

AmitDiwan

Updated on 14-Sep-2020 13:55:57

154 Views

We are required to write a JavaScript function that takes in array of strings and delete every one of the two string that start with the same letter.For example, If the actual array is −const arr = ['Apple', 'Jack' , 'Army', 'Car', 'Jason'];Then, we have to keep only one string ... Read More

Sum a negative number (negative and positive digits) - JavaScript

AmitDiwan

AmitDiwan

Updated on 14-Sep-2020 13:51:46

2K+ Views

We are required to write a JavaScript function that takes in a negative integer and returns the sum of its digitsFor example −-234 --> -2 + 3 + 4 = 5 -54  --> -5 + 4 = -1Let’s write the code for this function −ExampleFollowing is the code −const num ... Read More

Sum all duplicate value in array - JavaScript

AmitDiwan

AmitDiwan

Updated on 14-Sep-2020 13:48:49

471 Views

We are required to write a JavaScript function that takes in an array of numbers with duplicate entries and sums all the duplicate entries to one indexFor example −If the input array is −const input = [1, 3, 1, 3, 5, 7, 5, 4];Then the output should be −const output ... Read More

Find even odd index digit difference - JavaScript

AmitDiwan

AmitDiwan

Updated on 14-Sep-2020 13:45:44

194 Views

We are required to write a JavaScript function that takes in a number and returns the difference of the sums of the digits at even place and the digits odd placeExampleLet’s write the code −const num = 345336; const evenOddDifference = (num, res = 0, ind = 0) => { ... Read More

Compare array of objects - JavaScript

AmitDiwan

AmitDiwan

Updated on 14-Sep-2020 13:43:49

2K+ Views

We have two arrays of objects like these −const blocks = [    { id: 1 },    { id: 2 },    { id: 3 },    { id: 4 }, ] const containers = [    { block: { id: 1 } },    { block: { id: ... Read More

Count groups of negatives numbers in JavaScript

AmitDiwan

AmitDiwan

Updated on 14-Sep-2020 13:40:56

425 Views

We have an array of numbers like this −const arr = [-1, -2, -1, 0, -1, -2, -1, -2, -1, 0, 1, 0];Let’s say, we are required to write a JavaScript function that counts the consecutive groups of negative numbers in the array.Like here we have consecutive negatives from index ... Read More

Factorial recursion in JavaScript

AmitDiwan

AmitDiwan

Updated on 14-Sep-2020 13:38:46

332 Views

We are required to write a JavaScript function that computes the Factorial of a number n by making use of recursive approach.Here, we are finding the factorial recursion and creating a custom function recursiceFactorial() −const num = 9; const recursiceFactorial = (num, res = 1) => {    if(num){   ... Read More

JavaScript - Exclude some values in average calculation

AmitDiwan

AmitDiwan

Updated on 14-Sep-2020 13:36:48

311 Views

Let’s say, we have an array of objects like this −data = [    {"Age":26, "Level":8},    {"Age":37, "Level":9},    {"Age":32, "Level":5},    {"Age":31, "Level":11},    {"Age":null, "Level":15},    {"Age":null, "Level":17},    {"Age":null, "Level":45} ];We are required to write a JavaScript function that calculates the average level for all the ... Read More

Advertisements