var a = [1,2,3]; console.log(typeof a); //返回“object” console.log(Array.isArray(a)); //true在上面程式碼中,typeof 運算子只能顯示陣列的型別是 Object,而 Array.isArray() 方法可以直接返回布林值。在條件表示式中,使用該方法非常實用。
var a = [1,2,3]; console.log(2 in a); //true console.log('2' in a); //true console.log(4 in a); //false如果陣列的某個位置是空位,in 運算子將返回 false。