“Überprüfen Sie, ob 2 Arrays gleich JavaScript sind” Code-Antworten

Überprüfen Sie, ob 2 Arrays gleich JavaScript sind

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 überprüfen, ob zwei Array das gleiche Element haben

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

JavaScript prüft, ob zwei Arrays die gleichen Werte enthalten

const a = ['Left', 'Right'];
const b = ['Right', 'Left'];

//	true if a and b contain the same values
//	false otherwise
const c = a.sort().join(',') === b.sort().join(',');
Raul Talmacel

Ähnliche Antworten wie “Überprüfen Sie, ob 2 Arrays gleich JavaScript sind”

Fragen ähnlich wie “Überprüfen Sie, ob 2 Arrays gleich JavaScript sind”

Weitere verwandte Antworten zu “Überprüfen Sie, ob 2 Arrays gleich JavaScript sind” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen