Found 9321 Articles for Object Oriented Programming

Uncamelising a string in JavaScript

AmitDiwan
Updated on 11-Dec-2020 09:23:54

120 Views

We are required to write a JavaScript function that takes in a string as the first argument and a separator character as the second argument.The first string is guaranteed to be a camelCased string. The function should convert the case of the string by separating the words by the separator provided as the second argument.For example −If the input string is −const str = 'thisIsAString'; const separator = '_';Then the output string should be −const output = 'this_is_a_string';ExampleFollowing is the code −const str = 'thisIsAString'; const separator = '_'; const separateCase = (str = '', separator = ' ') => ... Read More

Swapcase function in JavaScript

AmitDiwan
Updated on 11-Dec-2020 09:22:48

446 Views

We are required to write a JavaScript function that takes in a string as the only argument.The string might contain both uppercase and lowercase alphabets.The function should construct a new string based on the input string in which all the uppercase letters are converted to lowercase and all the lowercase letters are converted to uppercase.ExampleFollowing is the code −const str = 'ThIs Is A STriNG'; const findLetter = (char = '') => {    if(char.toLowerCase() === char.toUpperCase){       return char;    }else if(char.toLowerCase() === char){       return char.toUpperCase();    }else{       return char.toLowerCase();   ... Read More

Masking email to hide it in JavaScript

AmitDiwan
Updated on 11-Dec-2020 09:21:51

3K+ Views

It is a common practice that when websites display anyone's private email address they often mask it in order to maintain privacy.Therefore for example −If someone's email address is −const email = 'ramkumar@example.com';Then it is displayed like this −const masked = 'r...r@example.com';We are required to write a JavaScript function that takes in an email string and returns the masked email for that string.ExampleFollowing is the code −const email = 'ramkumar@example.com'; const maskEmail = (email = '') => {    const [name, domain] = email.split('@');    const { length: len } = name;    const maskedName = name[0] + '...' + ... Read More

Finding all possible ways of integer partitioning in JavaScript

AmitDiwan
Updated on 11-Dec-2020 09:20:28

559 Views

The partition of a positive integer n is a way of writing n as a sum of positive integers. Two sums that differ only in the order of their summands are considered the same partition.For example, 4 can be partitioned in five distinct ways −4 3 + 1 2 + 2 2 + 1 + 1 1 + 1 + 1 + 1We are required to write a JavaScript function that takes in a positive integer as the only argument. The function should find and return all the possible ways of partitioning that integer.ExampleFollowing is the code −const findPartitions = (num = 1) => {    const arr = Array(num + 1).fill(null).map(() => {       return Array(num + 1).fill(null);    });    for (let j = 1; j

Finding square root of a number without using Math.sqrt() in JavaScript

AmitDiwan
Updated on 11-Dec-2020 09:19:00

660 Views

We are required to write a JavaScript function that takes in a positive integer as the only argument. The function should find and return the square root of the number provided as the input.ExampleFollowing is the code −const squareRoot = (num, precision = 0) => {    if (num deviation) {       res -= ((res ** 2) - num) / (2 * res);    };    return Math.round(res * (10 ** precision)) / (10 ** precision); }; console.log(squareRoot(16)); console.log(squareRoot(161, 3)); console.log(squareRoot(1611, 4));OutputFollowing is the output on console −4 12.689 40.1373

Finding the common streak in two arrays in JavaScript

AmitDiwan
Updated on 11-Dec-2020 09:17:27

149 Views

We are required to write a JavaScript function that takes in two arrays of literals, let’s call them arr1 and arr2.The function should find the longest common streak of literals in the arrays. The function should finally return an array of those literals.For example −If the input arrays are −const arr1 = ['a', 'b', 'c', 'd', 'e']; const arr2 = ['k', 'j', 'b', 'c', 'd', 'w'];Then the output array should be −const output = ['b', 'c', 'd'];ExampleFollowing is the code −const arr1 = ['a', 'b', 'c', 'd', 'e']; const arr2 = ['k', 'j', 'b', 'c', 'd', 'w']; const longestCommonSubsequence = ... Read More

Maximum contiguous sum of subarray in JavaScript

AmitDiwan
Updated on 11-Dec-2020 09:15:43

242 Views

We are required to write a JavaScript function that takes in an array of array of positive and negative integers. Since the array also contains negative elements, the sum of contiguous elements can possibly be negative or positive.Our function should pick an array of contiguous elements from the array that sums the greatest. Finally, the function should return that array.For example −If the input array is −const arr = [-2, -3, 4, -1, -2, 1, 5, -3];Then the maximum possible sum is 7 and the output subarray should be −const output = [4, -1, -2, 1, 5];ExampleFollowing is the code ... Read More

Finding the longest common consecutive substring between two strings in JavaScript

AmitDiwan
Updated on 11-Dec-2020 09:14:23

1K+ Views

We are required to write a JavaScript function that takes in two strings. Let’s call them str1 and str2. The function should then find out the longest consecutive string that is common to both the input strings and return that common string.For example −If the input strings are −const str1 = 'ABABC'; const str2 = 'BABCA';Then the output string should be −const output = 'BABC';ExampleFollowing is the code −const str1 = 'ABABC'; const str2 = 'BABCA'; const findCommon = (str1 = '', str2 = '') => {    const s1 = [...str1];    const s2 = [...str2];    const arr ... Read More

Radix sort - JavaScript

AmitDiwan
Updated on 11-Dec-2020 09:12:41

283 Views

Radix Sort Radix sort is a sorting algorithm that sorts data with integer keys by grouping keys by the individual digits which share the same significant position and value.We are required to write a JavaScript function that takes in an array of literals as the only argument. The function should sort the array in either increasing or decreasing order using the radix sort algorithm.ExampleFollowing is the code −const arr = [45, 2, 56, 2, 5, 6, 34, 1, 56, 89, 33]; const radixSort = (arr = []) => {    const base = 10;    let divider = 1;    let ... Read More

Encrypting a string using Caesar Cipher in JavaScript

AmitDiwan
Updated on 11-Dec-2020 09:10:54

540 Views

Caesar Cipher AlgorithmThe Caesar Cipher algorithm is one of the simplest and most widely known encryption techniques. It is a type of substitution cipher in which each letter in the plaintext is replaced by a letter some fixed number of positions down the alphabet.For exampleWith a left shift of 3, D would be replaced by A, E would become B, and so on. We are required to write a JavaScript function that takes in a string to be encrypted as the first argument and a shift amount as the second argument.The shift amount can be a positive or negative integer ... Read More

Advertisements