判斷 JavaScript 變量是否為數(shù)組類型可以使用以下方法:
1.使用 Array.isArray() 方法:這是一種確定變量是否為數(shù)組的最簡單、最可靠的方法。該方法返回一個布爾值,如果變量是數(shù)組,則返回 true;否則返回 false。
let arr = [1, 2, 3];
console.log(Array.isArray(arr)); // true
let str = "hello";
console.log(Array.isArray(str)); // false
2.使用 instanceof 運算符:該運算符用于判斷一個變量是否為某個類型的實例,可以用于判斷變量是否為數(shù)組。
let arr = [1, 2, 3];
console.log(arr instanceof Array); // true
let str = "hello";
console.log(str instanceof Array); // false
3.使用 Object.prototype.toString() 方法:該方法返回一個表示對象類型的字符串,對于數(shù)組對象,返回的字符串為 "[object Array]"。
let arr = [1, 2, 3];
console.log(Object.prototype.toString.call(arr) === "[object Array]"); // true
let str = "hello";
console.log(Object.prototype.toString.call(str) === "[object Array]"); // false
建議使用第一種方法,因為它最簡單、最可靠。