Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
September 20, 2021 07:01 am GMT

Intersection and Union of Array in JavaScript

Array and Union

What is union of Arrays?

Union of arrays would represent a new array combining all elements of the input arrays, without repetition of elements.

let arrOne = [10,15,22,80];let arrTwo = [5,10,11,22,70,90];// Union of Arrayslet arrUnion = [...new Set([...arrOne, ...arrTwo])];console.log(arrUnion);

What is intersection of Arrays?

The intersection of two arrays is a list of distinct numbers which are present in both the arrays. The numbers in the intersection can be in any order.

let arrOne = [10,15,22,80];let arrTwo = [5,10,11,22,70,90];// Intersection of Arrayslet arrIntersection = arrOne.filter((v) =>{    return arrTwo.includes(v);});console.log(arrIntersection);

Demo -


Original Link: https://dev.to/rajeshkumaryadavdotcom/intersection-and-union-of-array-in-javascript-2mg8

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To