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。
Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有