这篇文章主要讲解了“es6如何判断是否是数组”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“es6如何判断是否是数组”吧!
3种判断方法:1、使用“Array.isArray(数组对象)”语句来判断,如果是数组则返回true。2、使用“数组对象.constructor===Array”语句来判断。3、使用“数组对象 instanceof Array”语句来判断。
本教程操作环境:windows7系统、ECMAScript 6版、Dell G3电脑。
es6判断是否是数组的方法:
方法1:使用isArray()方法
isArray() 方法用于判断一个对象是否为数组。
如果对象是数组返回 true,否则返回 false。
var fruits = ["Banana", "Orange", "Apple", "Mango"];
console.log(Array.isArray(fruits));
if(Array.isArray(fruits)){
console.log("是数组");
}else{
console.log("不是数组");
}
方法2:利用constructor 属性
利用数组对象.constructor === Array
语句,如果是数组返回 true,否则返回 false。
var fruits = ["Banana", "Orange", "Apple", "Mango"];
console.log(fruits.constructor === Array);
if(fruits.constructor === Array){
console.log("是数组");
}else{
console.log("不是数组");
}
方法3:利用instanceof运算符
instanceof 运算符用于检测构造函数的 prototype 属性是否出现在某个实例对象的原型链上
var fruits = ["Banana", "Orange", "Apple", "Mango"];
console.log(fruits instanceof Array);
if(fruits instanceof Array){
console.log("是数组");
}else{
console.log("不是数组");
}
感谢各位的阅读,以上就是“es6如何判断是否是数组”的内容了,经过本文的学习后,相信大家对es6如何判断是否是数组这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!