Find Keys for Matched Values Like SQL Query in JavaScript

AmitDiwan
Updated on 21-Nov-2020 09:52:33

426 Views

Suppose, we have an object like this −const obj = {"100":"Jaipur", "101":"Delhi", "102":"Raipur", "104":"Goa"};We are required to write a JavaScript function that takes in one such object as the first argument and a search query term as the second argument. Then our function should return all those key/value pairs whose value includes the search term provided to the function as the second argument.We will simply iterate through the object, building the resulting object (if it matches the condition) as we move through and lastly return that object.ExampleThe code for this will be −const obj = {    "100":"Jaipur",    "101":"Delhi", ... Read More

Combine Highest Key Values of Multiple Arrays into a Single Array in JavaScript

AmitDiwan
Updated on 21-Nov-2020 09:51:25

253 Views

We are required to write a JavaScript function that takes in any number of array of Numbers. Our function should return an array of greatest numbers picked from the input array of array. The number of elements in the output array should be equal to the number of subarrays contained in the original input array.ExampleThe code for this will be −const arr1 = [117, 121, 18, 24]; const arr2 = [132, 19, 432, 23]; const arr3 = [32, 23, 137, 145]; const arr4 = [900, 332, 23, 19]; const mergeGreatest = (...arrs) => {    const res = [];   ... Read More

Sorting Parts of Array Separately in JavaScript

AmitDiwan
Updated on 21-Nov-2020 09:50:22

235 Views

We have an array that contains many objects. We are required to write a function to sort the first half of the array in ascending order.And the second half of the array with ascending order to but without inter mixing the entries of halves into one another.Consider this sample array −const arr = [    {id:1, x: 33},    {id:2, x: 22},    {id:3, x: 11},    {id:4, x: 3},    {id:5, x: 2},    {id:6, x: 1} ];Our function should sort this array on the basis of the 'x' property of the objects keeping the things mentioned above in ... Read More

Split Object into an Array of Objects in JavaScript

AmitDiwan
Updated on 21-Nov-2020 09:49:07

4K+ Views

Suppose, we have an object like this −const obj = {    "value 0": "value",    "value 1": "value",    "value 2": "value",    "value 3": "value",    "value 4": "value",    "value 5": "value",    "value 6": "value",    "value 7": "value",    "value 8": "value",    "value 9": "value" };We are required to write a JavaScript function that takes in one such object. The function should return a new array of objects in which each key/value pair is separated into its own separate object.ExampleThe code for this will be −const obj = {    "value 0": "value",   ... Read More

Get Total Number of Same Objects in JavaScript

AmitDiwan
Updated on 21-Nov-2020 09:47:49

164 Views

Suppose, we have an array of objects describing the routes of some flights like this −const routes = [    {       flyFrom: "CDG",       flyTo: "DUB",       return: 0,    },    {       flyFrom: "DUB",       flyTo: "SXF",       return: 0,    },    {       flyFrom: "SFX",       flyTo: "CDG",       return: 1,    } ];We need to count how many times there is return − 0 and how many times there is the return: 1.The end output should ... Read More

Find Nearest Higher Number from a Set of Numbers in JavaScript

AmitDiwan
Updated on 21-Nov-2020 09:45:48

165 Views

We have a set of numbers and our requirement is to find the same or the nearest higher number key to a specific number provided as the input to the function.The set of numbers is defined as −const numbers = {    A:107,    B:112,    C:117,    D:127,    E:132,    F:140,    G:117,    H:127,    I:132,    J:132,    K:140,    L:147,    M:117,    N:127,    O:132 };ExampleThe code for this will be −const numbers = {    A:107,    B:112,    C:117,    D:127,    E:132,    F:140,    G:117,    H:127,    I:132,   ... Read More

Create Every Combination Possible for Two Arrays in JavaScript

AmitDiwan
Updated on 21-Nov-2020 09:45:46

2K+ Views

Suppose we have two arrays of literals like this −const arr1 = ["A", "B", "C"]; const arr2 = ["1", "2", "3"];We are required to write a JavaScript function that takes in two such arrays of literals. The function should then combine each element of the first array with each element of the second array and push them into a new array.Therefore, the output for the above input should look like this −const output = ["A1", "A2", "A3", "B1", "B2", "B3", "C1", "C2", "C3"];ExampleThe code for this will be −const arr1 = ["A", "B", "C"]; const arr2 = ["1", "2", "3"]; ... Read More

Generating Combinations from n Arrays with m Elements in JavaScript

AmitDiwan
Updated on 21-Nov-2020 09:44:37

792 Views

We are required to write a JavaScript function that generates combinations from n number of arrays with m number of elements in them.For example −Consider this data −const arr = [    [0, 1],    [0, 1, 2, 3],    [0, 1, 2] ]3 sub arrays, with a different number of elements in them.What we want to do is get all combinations by combining an item from each array.For example −0, 0, 0 // item 0 from array 0, item 0 from array 1, item 0 from array 2 0, 0, 1 0, 0, 2 0, 1, 0 0, 1, ... Read More

Concatenate Two JavaScript Objects with Plain JavaScript

AmitDiwan
Updated on 21-Nov-2020 09:43:33

386 Views

Suppose we have two objects defined like this −const obj1 = {    id1: 21,    name1: "Kailash" }; const obj2 = {    id2: 20,    name2: "Shankar" };We are required to write a JavaScript function that takes in two such objects and merges into a single object.In other words, we are required to more or less implement the functionality of Object.assign() function.ExampleThe code for this will be −const obj1 = {    id1: 21,    name1: "Kailash" }; const obj2 = {    id2: 20,    name2: "Shankar" }; const concatObjects = (...sources) => {    const target ... Read More

Remove Duplicates from Array with URL Values in JavaScript

AmitDiwan
Updated on 21-Nov-2020 09:43:10

459 Views

Suppose, we have an array of objects like this −const arr = [    {       url: 'www.example.com/hello',       id: "22"    },    {       url: 'www.example.com/hello',       id: "22"    },    {       url: 'www.example.com/hello-how-are-you',       id: "23"    },    {       url: 'www.example.com/i-like-cats',       id: "24"    },    {       url: 'www.example.com/i-like-pie',       id: "25"    } ];We are required to write a JavaScript function that takes in one such array of objects. The ... Read More

Advertisements