“JS verifique si dos matriz tienen el mismo elemento” Código de respuesta

Compruebe si 2 matrices son iguales JavaScript

const a = [1, 2, 3];
const b = [4, 5, 6];
const c = [1, 2, 3];

function arrayEquals(a, b) {
  return Array.isArray(a) &&
    Array.isArray(b) &&
    a.length === b.length &&
    a.every((val, index) => val === b[index]);
}

arrayEquals(a, b); // false
arrayEquals(a, c); // true
Gleaming Goose

JS verifique si dos matriz tienen el mismo elemento

const intersection = array1.filter(element => array2.includes(element));
Lonely Loris

JavaScript obtenga elementos que existen en dos matrices

function getArraysIntersection(a1,a2){
    return  a1.filter(function(n) { return a2.indexOf(n) !== -1;});
}
var colors1 = ["red","blue","green"];
var colors2 = ["red","yellow","blue"];
var intersectingColors=getArraysIntersection(colors1, colors2); //["red", "blue"]

Grepper

Respuestas similares a “JS verifique si dos matriz tienen el mismo elemento”

Preguntas similares a “JS verifique si dos matriz tienen el mismo elemento”

Más respuestas relacionadas con “JS verifique si dos matriz tienen el mismo elemento” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código