“ist Array Equal JavaScript” Code-Antworten

ist Array Equal JavaScript

// comparing arrays to check for equality - method 1
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
madhav

Überprüfen Sie die Array -Werte gleich Js

[1,1,1,1].every( (val, i, arr) => val === arr[0] )   // true
Unsightly Unicorn

Ähnliche Antworten wie “ist Array Equal JavaScript”

Fragen ähnlich wie “ist Array Equal JavaScript”

Weitere verwandte Antworten zu “ist Array Equal JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen