“Array Intersection JavaScript ES6” Code-Antworten

JS -Array -Intersektionsobjekt

const arr1 = [{ id: 1 }, { id: 2 }]
const arr2 = [{ id: 1 }, { id: 3 }]
const intersection = arr1.filter(item1 => arr2.some(item2 => item1.id === item2.id))
// intersection => [{ id: 1 }]
foloinfo

Array Intersection JavaScript ES6

const intersection = (a, b) => {
  b = new Set(b); // recycling variable
  return [...new Set(a)].filter(e => b.has(e));
};

console.log(intersection([1, 2, 3, 1, 1], [1, 2, 4])); // Array [ 1, 2 ]
Charming Cheetah

Ähnliche Antworten wie “Array Intersection JavaScript ES6”

Fragen ähnlich wie “Array Intersection JavaScript ES6”

Weitere verwandte Antworten zu “Array Intersection JavaScript ES6” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen