Found 6710 Articles for Javascript

Find all disjointed intersections in a set of vertical line segments in JavaScript

AmitDiwan
Updated on 24-Nov-2020 10:38:22

153 Views

We have a set of vertical regions defined by y1 and y2 coordinates, where y1 is the starting point and y2 is the ending point of each region.The origin of our coordinates system is the top-left corner, so y2 is always greater than y1.This is an example −const regions = [    [10, 100],    [50, 120],    [60, 180],    [140, 220] ];We are required to write a JavaScript function that takes in one such region array as the first argument and a number as the second argument.We would like to find out all disjointed intersections greater than a ... Read More

Data manipulation with JavaScript

AmitDiwan
Updated on 24-Nov-2020 10:36:38

2K+ Views

Suppose we have two arrays describing some cashflow like these −const months = ["jan", "feb", "mar", "apr"]; const cashflows = [    {'month':'jan', 'value':10},    {'month':'mar', 'value':20} ];We are required to write a JavaScript function that takes in two such arrays. Our function should then construct a combined array of objects that contains an object for each month and the value of cash flow for that month.Therefore, for the above array, the output should look like −const output = [    {'month':'jan', 'value':10},    {'month':'feb', 'value':''},    {'month':'mar', 'value':20},    {'month':'apr', 'value':''} ];ExampleThe code for this will be −const months ... Read More

JavaScript union of two objects

Alshifa Hasnain
Updated on 26-Feb-2025 19:36:58

578 Views

In this article, we will learn to calculate the union of two objects in JavaScript. The union of two objects results in a new object that contains all the properties of both objects. What is the Union of Two Objects? The union of two objects is the process of combining the properties of both objects into a single object. For example Input − const obj1 = { name: " ", email: " " }; const obj2 = { name: ['x'], email: ['y']}; Output − const output = { name: {" ", [x]}, email: {" ", [y]} }; Different Approaches ... Read More

Create an object based on 2 others in JavaScript

AmitDiwan
Updated on 24-Nov-2020 10:33:32

116 Views

Suppose, we have two JavaScript objects defined like this −const a = {    a: 1,    af: function() { console.log(this.a) }, }; const b = {    b: 2,    bf: function() { console.log(this.b) }, };We are required to write a JavaScript function that takes in two such objects. Create another object which will get the properties of a and b, like this −const output = {    a: 1,    af: function() { console.log(this.a) },    b: 2,    bf: function() { console.log(this.b) }, }Note that a and b need to stay the same.ExampleThe code for this will ... Read More

How can I remove a specific item from an array JavaScript?

AmitDiwan
Updated on 24-Nov-2020 10:32:13

280 Views

Let’s say, we have an array of numbers and we added elements to it. You need to devise a simple way to remove a specific element from an array.The following is what we are looking for −array.remove(number);We have to use core JavaScript. Frameworks are not allowed.ExampleThe code for this will be −const arr = [2, 5, 9, 1, 5, 8, 5]; const removeInstances = function(el){    const { length } = this;    for(let i = 0; i < this.length; ){       if(el !== this[i]){          i++;          continue;       ... Read More

How to get a timestamp in JavaScript?

AmitDiwan
Updated on 24-Nov-2020 10:30:39

306 Views

We are required to depict the ways in which we can access the current timestamp in JavaScript in −---seconds---millisecondsJavaScript works with the number of milliseconds since the epoch whereas most other languages work with the seconds.This will give you a Unix timestamp (in seconds) −const date = new Date(); const unix = Math.round(+date / 1000); console.log(unix);This will give you the milliseconds since the epoch (not Unix timestamp) −const date = new Date(); const milliseconds = date.getTime(); console.log(milliseconds);

Return the greatest possible product of n numbers from the array in JavaScript

AmitDiwan
Updated on 24-Nov-2020 10:29:14

114 Views

We are required to write a JavaScript function that takes in an array of Numbers as the first argument and a number, say n, as the second argument.Our function should calculate and return the greatest possible product of n numbers from the array.ExampleThe code for this will be −const getHighestProduct = (arr, num) => {    let prod = 1;    const sorter = (a, b) => a - b;    arr.sort(sorter);    if (num > arr.length || num & 2 && arr[arr.length - 1] < 0) {       return;    };    if (num % 2) { ... Read More

Nested collection filter with JavaScript

AmitDiwan
Updated on 24-Nov-2020 10:28:17

1K+ Views

Suppose, we have an array of nested objects like this −const arr = [{    id: 1,    legs:[{       carrierName:'Pegasus'    }] }, {    id: 2,    legs:[{       carrierName: 'SunExpress'    },    {       carrierName: 'SunExpress'    }] }, {    id: 3,    legs:[{       carrierName: 'Pegasus'    },    {       carrierName: 'SunExpress'    }] }];We are required to write a JavaScript function that takes one such array as the first argument and a search query string as the second argument.Our function should filter ... Read More

Build tree array from JSON in JavaScript

AmitDiwan
Updated on 24-Nov-2020 10:25:34

3K+ Views

Suppose, we have the following array in JavaScript −const arr = [{    "code": "2",    "name": "PENDING" }, {    "code": "2.2",    "name": "PENDING CHILDREN" }, {    "code": "2.2.01.01",    "name": "PENDING CHILDREN CHILDREN" }, {    "code": "2.2.01.02",    "name": "PENDING CHILDREN CHILDREN02" }, {    "code": "1",    "name": "ACTIVE" }, {    "code": "1.1",    "name": "ACTIVE CHILDREN" }, {    "code": "1.1.01",    "name": "ACTIVE CHILDREN CHILDREN" }];We are required to write a JavaScript function that takes in one such array. The function should build a tree structure from this array based on ... Read More

Group objects by property in JavaScript

AmitDiwan
Updated on 24-Nov-2020 10:21:21

826 Views

Suppose, we have an array of objects that contains data about some fruits and vegetables like this −const arr = [    {food: 'apple', type: 'fruit'},    {food: 'potato', type: 'vegetable'},    {food: 'banana', type: 'fruit'}, ];We are required to write a JavaScript function that takes in one such array.Our function should then group the array objects based on the "type" property of the objects.It means that all the "fruit" type objects are grouped together and the "vegetable' type grouped together separately.ExampleThe code for this will be −const arr = [    {food: 'apple', type: 'fruit'},    {food: 'potato', type: ... Read More

Advertisements