“Überprüfen Sie, ob Wert ein Array ist” Code-Antworten

Überprüfen Sie, ob eine Variable in JavaScript ein Array ist

// inside if else check
if(Array.isArray(myVarToTest)) {
	// myVatToTest is an array
} else {
	// myVarToTest is not an array
}
Vivacious Vendace

So überprüfen Sie den Wert, das Array ist oder nicht in JavaScript

// how to check value is array or not in javascript
const str = "foo";
const check = Array.isArray(str);
console.log(check);
// Result: false

const arr = [1,2,3,4];
const output = Array.isArray(arr);
console.log(output);
// Result: true
Chetan Nada

JS überprüfen, ob eine Variable ein Array ist

let fruit = 'apple';
let fruits = ["apple", "banana", "mango", "orange", "grapes"];

const isArray = (arr) => Array.isArray(arr);

console.log(isArray.(fruit)); //output - false
console.log(isArray.(fruits)); //output- true
Worried Wasp

Überprüfen Sie, ob Wert ein Array ist

Method 1: Using the isArray method
Array.isArray(variableName)'

Method 2:
variable instanceof Array

Method 3:
variable.constructor === Array
Samiksha Singla

Überprüfen Sie, ob Array JavaScript ist

if(Object.prototype.toString.call(someVar) === '[object Array]') {
    alert('Array!');
}
Helpless Herring

Ähnliche Antworten wie “Überprüfen Sie, ob Wert ein Array ist”

Fragen ähnlich wie “Überprüfen Sie, ob Wert ein Array ist”

Weitere verwandte Antworten zu “Überprüfen Sie, ob Wert ein Array ist” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen