“JS 2D -Array enthält” Code-Antworten

2D -Array enthält Array JS

let arr = [[1,3], [1,1]];
if(arr.some(row => JSON.stringify(row) === JSON.stringify([1,3]))){
    console.log("arr contains this array")
} else {
    console.log("arr doesn't contain array")
}
MaxBruss

JS 2D -Array enthält

array.some(row => row.includes(search))
just-saved-you-a-stackoverflow-visit

Ähnliche Antworten wie “JS 2D -Array enthält”

Fragen ähnlich wie “JS 2D -Array enthält”

Weitere verwandte Antworten zu “JS 2D -Array enthält” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen